var popUpWin=0;
var width = (screen.width) - 20
var height = screen.height
function popUpWindow(strURL, left, top, width, height) {
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(strURL, 'popUpWin', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,titlebar=0,resizable=0,copyhistory=1,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  //popUpWin.focus();
} 
function popup_picture(strURL, strTarget, left, top, width, height) {
  var popUpPic = open(strURL, strTarget, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,titlebar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpPic.focus();
} 
function openWindow(strURL, strTarget, left, top, width, height) {
  var openWin = open(strURL, strTarget, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,titlebar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  openWin.focus();
} 


