/////////////////////////////////////////////////
function loadPopup (idx) {
	winWidth=popups[idx].imgW + 80;
	winHeight=popups[idx].imgH + 80;
	loadWindow('popup.html?'+idx,winWidth,winHeight,'popup'+idx,0,0,0,0,0,0,0);
}

/////////////////////////////////////////////////
function popupItem (imgW,imgH,title,fname) {
     this.imgW = imgW
     this.imgH = imgH
     this.title = title
     this.fname = fname
}

var popups = new Array()

popups[0] =  new popupItem(543,400,"eBook Example","maenadpages_400.jpg")
popups[1] =  new popupItem(350,350,"CD Cover Example","regenesisCD_350.jpg")
popups[2] =  new popupItem(602,400,"Catalog Example","mirthcatalog3_400.jpg")

















