<!-- Hide script from old browsers functions for new window mouseovers, onclicks, and mouseouts
function flashwindowWindow(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.availWidth - 802) / 2;
		topPos = (screen.availHeight - 580) / 2;

		//leftPos = screen.width;
		//topPos = screen.height;

	}

	//sets the parametres for the window
	winStats='resizable=yes,toolbar=no,location=no,directories=no,menubar=no,';
	winStats+='scrollbars=yes,dependent,width=780,height=580';
	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();
	/*var x = (screen.availWidth / 2) - (document.body.clientWidth / 2);
	var y = ((screen.availHeight - 60) / 2) - (document.body.clientHeight / 2);
	x = (x > 0) ? x : 0;
	y = (y > 0) ? y : 0;
	bannerWindow.window.moveTo(x, y);*/
}
// End hiding script from old browsers -->
