function newwindow(image,windowwidth,windowheight,title) {
imagewindow=open('','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width='+windowwidth+',height='+windowheight+',left=50,top=50,resizable=0');
imagewindow.document.writeln('<html>');
imagewindow.document.writeln('<body background="oldalhatter.gif" link="#b4a15f" alink="#000000" vlink="#b4a15f" text="#740F2C" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
imagewindow.document.writeln('<title>'+title+'</title>');
imagewindow.document.writeln('<p align="center">');
imagewindow.document.writeln('<font face="Tahoma" size="2">');
imagewindow.document.writeln('<br>');
imagewindow.document.writeln('<img src='+image+'>');
imagewindow.document.writeln('<br><br>');
imagewindow.document.writeln('<a href="javascript:window.close()">Bezár / Schliessen / Close</a>');
imagewindow.document.writeln('<br>');
imagewindow.document.writeln('</body>');
imagewindow.document.writeln('</html>');
}

function popUpWindow(webcim,szel,mag) {
open(webcim,'_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,top=50,left=50,width='+szel+',height='+mag);
}

function openwindow(image,windowwidth,windowheight,title) {
imagewindow=open('','_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width='+windowwidth+',height='+windowheight+',left=50,top=50,resizable=0');
imagewindow.document.writeln('<html>');
imagewindow.document.writeln('<title>'+title+'</title>');
imagewindow.document.writeln('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"');
imagewindow.document.writeln('bottommargin="0" rightmargin="0">');
imagewindow.document.writeln('<a href="javascript:window.close()"><img src='+image+' border="0" alt="Bezár / Schliessen / Close"></a>');
imagewindow.document.writeln('</body>');
imagewindow.document.writeln('</html>');
}
