<!--
		var garyHeight=Math.round((screen.height)*.5);
		var garyWidth=Math.round((screen.width)*.7);
		//alert('Width=' + garyWidth + 'Height=' + garyHeight);
		var win=null;
		function NewWindow(mypage,myname,w,h,scroll,pos){
		if(pos=="random"){
			LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-garyWidth)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-garyHeight)-75)):100;
		}
		if(pos=="center"){
			LeftPosition=(screen.width)?(screen.width-garyWidth)/2:100;TopPosition=(screen.height)?(screen.height-garyHeight)/2:100;
		} else if((pos!="center" && pos!="random") || pos==null){
			LeftPosition=0;TopPosition=20
		}
		settings='width='+garyWidth+',height='+garyHeight+',top=75+'+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=yes,directories=no,status=yes,menubar=yes,toolbar=yes,resizable=yes';win=window.open(mypage,myname,settings);}
	// -->