<!-- Hide script from old browsers functions for new window mouseovers, onclicks, and mouseouts
function imageWindowFunding(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-450;
		
		//leftPos = screen.width;
		//topPos = screen.height;

	}
	
		//sets the parametres for the window
		winStats='toolbar=no,location=no,directories=no,menubar=no,';
		winStats+='scrollbars=yes,width=600,height=524';
	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();
}
// End hiding script from old browsers -->
