//JS File for Home.aspx
/*
	SD 13/07/07
	Ensure that page loads inside frameset
*/
function homeLoad()
{
	//Check that top frame is default.aspx
	if(window.parent.location == window.location)
		window.location = "default.aspx";
}

