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>Reni Fodrászszalon</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="Kattintson a képre a bezáráshoz!"><br></a>');
  PicWin.document.writeln('</body>');
  PicWin.document.writeln('</html>');
  PicWin.document.close();
}


