window.onload = openWindow;

function openWindow()
{
	var screenWidth = screen.width;
	var scrollbars = (screenWidth >= 1024) ? 'no' : 'yes';
	
	var newWindow = window.open('./flash/index.html', 'newWindow', 'left=0, top=0, location=no, menubar=no, resizable=no, scrollbars=' + scrollbars + ', status=no, toolbar=no, width=' + screenWidth + ', height=' + screen.height);
	
	if (newWindow)
	{
		if (screenWidth >= 1024)
		{
			newWindow.resizeTo(screen.availWidth, screen.availHeight);
		}
		
		newWindow.focus();
	}
}

