<!--
///////////////////////////////////////////////////////////
// "Popup venstrs"
//
// © 2000 - 2004 WOFH website design 
///////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////



function picture(picgoal,picname,w,h) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;


  PicWin=window.open("",picname,'status=0,scrollbars=0,resizable=0,width='+w+',height='+h+',top='+wint+',left='+winl+'');
  PicWin.document.open();
  PicWin.document.writeln('<html>');
  PicWin.document.writeln('<head>');
  PicWin.document.writeln('<title>'+picname+'</title>');
  PicWin.document.writeln('</head>');
  PicWin.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" background="'+picgoal+'">');
  PicWin.document.writeln('<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">');
  PicWin.document.writeln('<tr>');
  PicWin.document.writeln('<td height="100%">&nbsp;</td></tr>');
  PicWin.document.writeln('</tr>');
  PicWin.document.writeln('</body>');
  PicWin.document.writeln('</html>');
  PicWin.document.close();
}


// -->


