/*
File Name: pop_up.js
Version: 0.1
Erstellt am: 20.11.02
Programmiert von: PP Schweiz JV
Geaendert:
Zentrales JS fuer alle PopUps. Die Groessenangaben werden von Links als Parameter mitgegeben.
<a href="javascript:popUpWindow('','images','200','200', '200','200')">

*/
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+'');
}


function openNewWindow(url) {
    window.open('http://'+url,'windowRef');
}