function openBook(city){
var bookName = city;
var winName = 'mypage';
	newUrl = "http://hosting5.innovectra.net/rdi/" + bookName;
 	if(navigator.appName=="Netscape") {  //Netscape Open
		newWindow=window.open(href=newUrl, winName, 'width='+(screen.availWidth -10)+',height='+(screen.availHeight -65)+',screenX=0,screenY=0,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no')
	} 
	else { 						//IE Open
		newWindow=window.open(href=newUrl, winName,'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
	newWindow.focus();
	}
	if((navigator.appName!="Netscape" && navigator.appVersion.indexOf("MSIE") != -1 && navigator.appVersion.charAt(navigator.appVersion.indexOf("MSIE")+5)== '4') || newWindow == null) { 		window.blur();	
	} else {	 					//AOL Open
		if(navigator.userAgent.indexOf("AOL") == -1)
		newWindow.focus();
	}

}

