<!-- Hide script from old browsers functions for new window mouseovers, onclicks, and mouseoutsfunction imageWindow(what) {	var URL = what;	//sets up position of screen if not already set	leftPos = 0	topPos = 0;	//body.style.scrollbarBaseColor="red";	if (screen) {		//takes the current screen and calculates position		leftPos = screen.width/2-500;		topPos = screen.height/2-600;				//leftPos = screen.width;		//topPos = screen.height;	}			//sets the parametres for the window		winStats='toolbar=no,status=no,location=no,directories=no,menubar=no,';		winStats+='scrollbars=yes,width=350,height=273';	if (navigator.appName.indexOf("Microsoft")>=0) {		//different position set for IE		winStats+=',left='+leftPos+',top='+topPos;	} else { 		// screen position		winStats+=',screenX='+leftPos+',screenY='+topPos;	}	//creates new window	bannerWindow=window.open(URL,'bookWin',winStats);  	bannerWindow.focus();}