function openwin(theURL,winName,features, myWidth, myHeight, isCenter)
{
if(window.screen)if(isCenter)if(isCenter=="true"){
var myLeft = (screen.width-myWidth)/2;
var myTop = (screen.height-myHeight)/2;
features+=(features!='')?',':'';
features+=',left='+myLeft+',top='+myTop;
}

	picWindow = window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
	picWindow.document.writeln("<html><head><title>Pop the Picture!</title></head>");
	picWindow.document.writeln("<body onLoad='self.focus()' onBlur='self.close()' scroll='no' background='gfx/p_pop_bg_sommer.png' style='background-repeat:no-repeat;background-position:50% 50%;' marginwidth='0' marginheight='0' leftmargin='0' topmargin='0' bgcolor='#ffffff'>");
 	picWindow.document.writeln("<img onMouseover=\"this.style.cursor='hand'; this.style.cursor='pointer'\" onclick=\"window.close();\" border='0'src='" + theURL + "'>");
	picWindow.document.writeln("</body></html>");
}