<!--

function picpop(picgoal,picname,width,height) {
  PicWin=window.open("",picname,"width="+width+",height="+height+",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no",'newwin');
  PicWin.document.open();
  PicWin.document.writeln('<html>');
  PicWin.document.writeln('<head>');
  PicWin.document.writeln('<title>Jaguar</title>');
  PicWin.document.writeln('</head>');
  PicWin.document.writeln('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
  PicWin.document.writeln('<a href="javascript:window.close()"><img src="'+picgoal+'" border="0" alt=""><br></a>');
  PicWin.document.writeln('</body>');
  PicWin.document.writeln('</html>');
  PicWin.document.close();
}

function linkpop(link,width,height) {
  window.open(link,"x","width="+width+",height="+height+",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes");
}

-->
