function openPopup(strPopup) {
	popUps[strPopup].newWin();
}

// object build for popups
function openNewWindow() {
	var myWin = window.open(this.page,this.name,'width=' + this.width + ',height=' + this.height + ',scrollbars=' + this.scroll + ',left=90,top=50');
	myWin.focus();
}

// name this window
self.name = "main";
	
function popUp(pLabel, pPage, scrollOpt, wWidth, wHeight) {
	this.name = pLabel;
	this.page = pPage;
	this.scroll = scrollOpt;
	this.width = wWidth;
	this.height = wHeight;
	// the open method
	this.newWin = openNewWindow;
}

var popUps = new Array();
	popUps["previewBBasics"] = new popUp("bookPreview", "/previews/preview_baby_basics.html", "yes", 625, 650);
	popUps["previewHolaBebe"] = new popUp("bookPreview", "/previews/preview_hola_bebe.html", "yes", 625, 650);
	popUps["previewPlanner"] = new popUp("bookPreview", "/previews/preview_planner.html", "yes", 625, 650);

