// JavaScript Document
function OpenNewWindow(bigurl, width, height) // Kép új ablakban...
{
	width = width +15;
    var newWindow = window.open("", "pictureViewer", "location=no, directories=no, fullscreen=no, resizable=yes, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=yes");
    newWindow.document.writeln("<html>");
    newWindow.document.writeln("<body style='margins: 0 0 0 0;'>");
    newWindow.document.writeln("<a href='javascript:window.close();'>");
    newWindow.document.writeln("<img src='" + bigurl + "' width='100%' alt='Kattintson ide a bezáráshoz!' id='nincs'/>");
    newWindow.document.writeln("</a>");
    newWindow.document.writeln("</body></html>");
    newWindow.document.close();
}
