
function toggleblock(id,val){
	var blk = document.getElementById(id);
	if (val == 0) {
	   blk.style.display = "none";
	}
  else{
	   blk.style.display = "block";
  }
}





	function checkselect(element){
  	if (document.rendeles_aszf.options[element.selectedIndex].value == "0"){
    	return false;
      alert("El kell fogadni az Általános Szerződési Feltételeket!");
    }
    else{
    	return true;
    }
  }




	function my_openwindow(page, name, w, h, scroll) {
	  var winl = (screen.width - w) /2 ;
	  var wint = (screen.height - h) /2;
	  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	  win = window.open(page, name, winprops)
	  if (parseInt(navigator.appVersion) >= 4){
	    win.window.focus();
	  };
	};
