


// Maximise Window
function maxWindow()
{
	if (document.getElementById) {
		moveTo(0, 0);
		window.resizeTo((screen.availWidth), (screen.availHeight));
		return true;
	}
	return false;
}



// Is Popup?
function isPopup()
{
	if (window.opener)
	{
		return true;
	}
	else
	{
		return false;
	}
}



// Check Window
function checkWindow()
{
	if (isPopup())
	{
		maxWindow();
	}
	else
	{
		document.location = "index.html";
	}
}



