
function ido() {
	var d=document;
	var i=new Date();
	o=i.getHours();
	p=i.getMinutes();
	m=i.getSeconds();
	
	if (o<10) o='0'+o;
	if (p<10) p='0'+p;
	if (m<10) m='0'+m;
	
	idopont=o+':'+p+':'+m;
	
	if (document.layers) 
		d.NNora.d.write(idopont);
	else
		document.getElementById("IEora").innerHTML = idopont;

	setTimeout('ido()',1000);
}


function openpic(url,kepx,kepy) {
	var x=screen.width;
	var y=screen.height;

	posx=x/2-kepx/2;
	posy=y/2-kepy/2;
	
	html=window.open('','','width='+kepx+',height='+kepy+',left='+posx+',top='+posy);
	html.document.open("text/html");
	html.document.write("<body MARGINWIDTH=0 MARGINHEIGHT=0 LEFTMARGIN=0 TOPMARGIN=0><img src="+url+" width="+kepx+" height="+kepy+" border=0></body>");
	html.document.close();

}



function openmail(cikkid) {
	window.open('kuldje.php?cikkid='+cikkid,'','width=400,height=300');
}
