/* ő */

function calcHeight()
{
	//find the height of the internal page
	var the_height=
	document.getElementById('the_iframe').contentWindow.document.body.scrollHeight;

	//change the height of the iframe
	document.getElementById('the_iframe').height=the_height;
}

function popup(img) {
	var newWindow=window.open('', 'kep',',type=fullWindow,fullscreen,scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes');
	newWindow.focus();

	newWindow.document.write("<HTML>")
	newWindow.document.write("<TITLE>:: S C A M P ::</TITLE>")
	newWindow.document.write("<BODY style='background: #fff; margin: 0px; text-align: center;'><table height='100%' width='100%'><tr><td valign='middle' align='center'>")
	newWindow.document.write("<a href=# onClick='self.close();return false;' style='outline:none;'>")
	newWindow.document.write("<img src='"+img+"' name='kep' style='' alt='Bezár' border='0'>")
	newWindow.document.write("</a>")
	newWindow.document.write("</td></tr></table></BODY>")
	newWindow.document.write("</HTML>")
}

function loadXMLDoc(url, obj_name)
{
	if(window.XMLHttpRequest){ // code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
		
	}else{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		
	}
	
	xmlhttp.open("GET",url,false);
	xmlhttp.send(null);
	//if(obj_name!="") document.getElementById(obj_name).innerHTML=xmlhttp.responseText;
	if(obj_name!="") document.getElementById(obj_name).value=xmlhttp.responseText;
}
