function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
	newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}

function popupgalimage(imgsrc, popwidth, popheight){

function triangulate(){
leftpos = (screen.width) ? (screen.width-popwidth)/2 : 0;
toppos = (screen.height) ? (screen.height-popheight)/2 : 0;
}

triangulate()
var windowdesc='width='+popwidth+',height='+popheight+',scrollbars=yes,resizable=no,left='+leftpos+',top='+toppos
var picsrc=imgsrc
if (typeof popupgalwin=="undefined" || popupgalwin.closed)
popupgalwin=window.open(picsrc,"popupgalwin",windowdesc)
else{
popupgalwin.close()
popupgalwin=window.open(picsrc,"popupgalwin",windowdesc)
}
}


