var popWin;

function popupwindow2(url, width, height)
{
 if(popWin)
 {
  popWin.close();
  popWin='';
 }
 popWin=window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
 popWin.moveTo(150, 20);
}

function popupwindow(url, width, height, nummer)
{
 if(popWin)
 {
  popWin.close();
  popWin='';
 }
 popWin=window.open(url,"popWin","toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no,width="+ width +",height="+height);
 popWin.moveTo(30, 30);
 popWin.document.write ("<HTML><HEAD><TITLE>Jan Piepenbrock Galerie, No. "+ nummer +"</TITLE></HEAD>");
 popWin.document.write ("<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' MARGINHEIGHT='0' MARGINWIDTH='0'>");
 popWin.document.write ("<img src='"+url+"'>");
 popWin.document.write ("</body></HTML>");
}

function VWdw(ziel) {
 linkwdw = window.open(ziel,"linkfenster","location=no,menubar=no,resizable=yes,status=yes");
 
 linkwdw.document.bgColor = "#000000";
 linkwdw.document.title = "Jan Piepenbrock Bild";
 linkwdw.focus();
}

