//Javascript - ng.js

var win = '';
function popitup(winURL,ht,wid)
{
    closeDep();
	
	winURL = "photobio/" + winURL;
	
	win = window.open(winURL, "ng", "height="+ht+",width="+wid+",scrollbars,left=50,top=0,screenX=50,screenY=0");
 //  win.location.href = winURL;
    if (win.opener == null)  win.opener = self; 
		
	win.focus();
}

function closeDep() {
  if (win && win.open) win.close();
}

function loadinparent(url, closeSelf){
	self.opener.location = url;
	if(closeSelf) self.close();
	}
// - End of JavaScript - -->

