// PopUp Maker 5.0 by CodeBrain.com
// PopUp Window Script
// Place this script in the <head> of your page.

var doPopUpX = (screen.width/2)-250;
var doPopUpY = (screen.height/2)-200;
var pos = "left="+doPopUpX+",top="+doPopUpY;

function doPopUp(){
doPopUpWindow = window.open("books/index.html","Books","location=1,status=1,scrollbars=1,menubar=1,toolbar=1,resizable=1,width=790,height=450,"+pos);
}
