var timer;
var IE = document.all ? true : false;

function initialWindow()
{
	window.moveTo(0, 0);
	window.resizeTo(screen.availWidth, screen.availHeight);
	
	timer = window.setInterval("changeURL()", 10000);
}

function changeURL()
{
	if (IE) 
		document.URL = "main.html";
	else
		window.location.href = "main.html";
	
	window.clearInterval(timer);
}
