

function imgpop( imgFile , fileWidth, fileHeight ) {
//        if ( imgpopup != null )
//        {
//                if ( ! imgpopup.closed )
//                {
//                        imgpopup.window.close()
//                }
//        }
imgpopup = window.open('','_blank',"location=0,menubar=0,toolbar=0,scrollbars=1,resizeable,personalbar=0,status=0,left=20,top=180,width="+fileWidth+",height="+fileHeight);
p=imgpopup.document;
p.writeln('<HTML>');
p.writeln('<HEAD>');
p.writeln('<TITLE>Kép</TITLE>');
p.writeln('</HEAD>');
p.writeln('<BODY marginheight="0" marginwidth="0" topmargin="0" leftmargin="0">');
p.writeln('<img src="'+imgFile+'">');
p.writeln('</BODY>');
p.writeln('</HTML>');    
}

function terkep() {
    imgpop('/terckft/content_images/0122_terkep.jpg', '593', '826');
}


