function popUpWindow(title, img, width, height, id)
{
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var msgWindow = window.open("","msgWindow"+id, styleStr);
  var head = '<head><title>'+title+'</title></head>';
  var body = '<body style="margin: 0px; padding: 0px;"><img src="'+img+'" />';
  msgWindow.document.write(head + body);
}
var popUpWin=0;

function popUpWindow_scr(url, width, height)

{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  popUpWin = open(url, '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+'');
}

