<!--
function openWindow() {
	if (window.screen){
		if (navigator.appName == 'Microsoft Internet Explorer' && (navigator.platform.substring(0,3) == 'Win')) {
			var scw=screen.Width;
			var sch=screen.Height;
			if (scw<800){scw=533; sch=375;}
			else if (scw==800){scw=600; sch=400;}
			else if (scw>800){scw=600; sch=400;}
			remote=window.open ("", "remo", "toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=no,resizable=0,left=0,top=0,width=" + scw + ",height=" + sch);
			}
		else if (navigator.appName == 'Netscape' && (navigator.platform.substring(0,3) == 'Win')) {
			var scw=screen.width;
			var sch=screen.height;
			if (scw<800){scw=533; sch=375;}    
			else if (scw==800){scw=600; sch=400;}
			else if (scw>800){scw=600; sch=400;}
			remote=window.open ("", "remo", "toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=no,resizable=0,left=0,top=0,screenX=0,screenY=0,outerWidth=" + scw + ",outerHeight=" + sch);
			}
		else if (navigator.platform == 'MacPPC') {
			var scw=screen.width;
			var sch=screen.height;
			if (scw<800){scw=510; sch=359;}
			else if (scw==800){scw=600; sch=400;}
			else if (scw>800){scw=600; sch=400;}
			remote=window.open ("", "remo", "toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=no,resizable=0,left=0,top=0,screenX=0,screenY=0,outerWidth=" + scw + ",outerHeight=" + sch);
			}
		else {
			
			remote=window.open ("", "remo", "toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=no,resizable=0,left=0,top=0,width=600,height=450");
			}
		}
	else {
		remote=window.open ("", "remo", "toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=no,resizable=0,left=0,top=0,width=600,height=450");
		}
	remote.location.href = "quoveset.html";
	remote.focus();
	if (remote.opener == null) remote.opener = window; 
	remote.opener.name = "winOpener";
	window.name = "winOpener";
	}
openWindow();


//-->