function Exit()
	{
	if(confirm("Are you sure you want to leave the Pixel Department?"))
		{
		alert("Click \'OK\' to enter the Splash Screen!"); document.location.reload('../index.html');
		}
	else alert("You stayed anyway, Thanks!");
	}

function ExitNG()
	{
	if(confirm("Are you sure you want to leave the Pixel Department?"))
		{
		alert("Click \'OK\' to enter the Next-Gen department!"); document.location.reload('../nextgen/home.html');
		}
	else alert("You stayed anyway, Thanks!");
	}