if (getCookie('naszejszaka_first_visit')!='visited')
{
var agreewin=dhtmlmodal.open("agreebox", "iframe", "regaction.html", "", "width=500px,height=330px,center=1,resize=1,scrolling=0", "recal")

agreewin.onclose=function(){ //Define custom code to run when window is closed
	var theform=this.contentDoc.getElementById("eula") //Access form with id="eula" inside iframe
	var yesbox=theform.eulabox[0] //Access the first radio button within form
	var nobox=theform.eulabox[1] //Access the second radio button within form
	if (yesbox.checked==true)
		window.location.href="http://www.naszejszaka.hu/regisztracio.html"
	else if (nobox.checked==true)
		window.location.href="index.php"
	
	return true //Allow closing of window in both cases

}
setCookie('naszejszaka_first_visit','visited', exp)
}
