function noveok(name,pic,w,h,pos,tx) { 
var ih; 
ih=10;

h1=h+20;
if (h1>((window.screen.height)-40)){
h1=((window.screen.height)-40);
}

w1=w+40;
if (w1>((window.screen.width)-40)){
w1=((window.screen.width)-40);
}

msg=window.open("","msg","scrollbars=auto,height="+h1+",width="+w1+",left="+pos+",top="+ih+""); 
msg.document.write("<title>Energonet Nitra</title><LINK rel='STYLESHEET' type='text/css' href='styl.css'>"); 
msg.document.write("<body leftmargin=0 topmargin=10 onclick=window.close()>"); 
msg.document.write("<center><img src="+pic+" border=0 width="+w+" height="+h+"></center>"); 
//msg.document.write("<p>"+tx);
msg.document.write("</body>");
msg.document.close();
}	
