// Popup Function

function showPic(picid, width, height)
{

	window.open( "fram/frame.php?pid="+picid, "myWindow", "status = 1, height="+height+", width="+width+", resizable = 0" )

}


var popUpWin=0;

function popUpWindow(pid,width,height,gid)
{
	var left = 100;
	var top = 100;
	width = parseInt(width)+40;
	height = parseInt(height)+95;
	URLStr = "fram/frame.php?pid="+pid+"&gid="+gid;
	
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }

  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}

/*function myPopup2() {
window.open( "fram/02.html", "myWindow", 
"status = 1, height = 425, width = 532, resizable = 0" )
}
function myPopup3() {
window.open( "fram/03.html", "myWindow", 
"status = 1, height = 425, width = 532, resizable = 0" )
}
function myPopup4() {
window.open( "fram/04.html", "myWindow", 
"status = 1, height = 425, width = 532, resizable = 0" )
}*/

