//centered popup
var popup;
function pop(url,myWidth,myHeight ) { 
    myLeft = (screen.width-myWidth)/2;
    myTop = (screen.height-myHeight)/2;
    coords = 'scrollbars=0, resizable=0,left='+myLeft+',top='+myTop+',width='+myWidth+',height='+myHeight;
    if (popup) popup.close();
	popup=window.open(url,'popek',coords);
	}

//auto-window-size-adjusting centered image popup
var pic;
function popPic(url) { 
	var	poj=new Image;
	poj.onload=function(){
		var myWidth = this.width;
		var myHeight = this.height;
    	myLeft = (screen.width-myWidth)/2;
	    myTop = (screen.height-myHeight)/2;
    	coords = 'scrollbars=0, resizable=0, status=0, left='+myLeft+',top='+myTop+',width='+myWidth+',height='+myHeight;
    	if (pic) {pic.close();}
		pic=window.open('','',coords);
		pic.document.write('<html><head><title>Edenderry Power</title></head>'+'<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onLoad="self.focus()"><img src="'+this.src+'" onClick="opener.pic=null; self.close()"></body></html>');
		}
	poj.src=url;
}
