// JavaScript Document
function resize()
{
	TheWidth=screen.width;
	TheHeight=screen.height;

	TheWidth=TheWidth-10;
	TheHeight=TheHeight-65;

	if ((screen.width>=1024) && (screen.height>=768))
	{
		 var popWin = window.open ('hires.html', 'popWin', 'top=0, left=0, width='+TheWidth+', height='+TheHeight+', resizable=no');
	} else {
		var popWin = window.open ('lores.html', 'popWin', 'top=0, left=0, width='+TheWidth+', height='+TheHeight+', resizable=no');
	}

}