/* Javascript codes */
window.status="Powered By www.iristechies.com";
var popUpWin=0;
function ShowPopup(_content, _width, _height, _left, _top)

{

 var content=_content || "";
 var width= _width || 500;
 var height=_height || 400;
 var left=_left || (screen.width-width)/2;
 var top=_top || (screen.height-height)/2;
 
 
  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }

  popUpWin = open("popup.html?pid="+content, '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+'');
  


}



