
var popUpWin=0;

function popUpWindow(URLStr, width, height){
  if(popUpWin){
    if(!popUpWin.closed) popUpWin.close();
  }
  var left = 0, top = 0;
 // if (width == "max" or height=="max")
  left = parseInt((screen.width - width) / 2);
  top = parseInt ((screen.height - height) / 20);
  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 popUpGal(URLStr, width, height){
  if(popUpWin){
    if(!popUpWin.closed) popUpWin.close();
  }
  var left = 0, top = 0;
 // if(width == "max") width = parseInt((screen.width - width) / 2);
  left = parseInt((screen.width - width) / 2);
  top = parseInt ((screen.height - height) / 20);
  popUpWin = open('', '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+'');
  
  
  width  = width  - 4;
  height = height - 4;
  var head = '<head><title>Stender Estonia</title><SCRIPT LANGUAGE="JavaScript" SRC="scripts/general.js" TYPE="text/javascript"></SCRIPT></head>';
  var body = '<body topmargin=2 leftmargin=2 bgcolor=#ffffff>';
  body += '<a href="javascript: popUpClose()">';
  body += '<img src='+URLStr+' width='+width+' height='+height+' border=0>';
  body += '</a>';
  body += '</body>';
  //var body = '<center>'+msg+'<br><p><form><input type="button" value="   Done   " onClick="self.close()"></form>';
 //popUpWin.document.write(head + body);

}


function popUpClose(){
	window.close();
}




