//************ mozgos ************ //
function gotoUrl(url){
	document.location.href = url;
	return true;
}
function hideDiv(id){
	if (document.getElementById) { // DOM3 = IE5, NS6 
		document.getElementById(id).style.display = 'none';
	} 
	else {
		if (document.layers) { // Netscape 4 
			document.id.display = 'none';
		} 
		else { // IE 4 
			document.all.id.style.display = 'none'; 
		} 
	} 
} 
function showDiv(id){
	if (document.getElementById) { // DOM3 = IE5, NS6 
		document.getElementById(id).style.display = 'block'; 
	} 
	else { 
		if (document.layers) { // Netscape 4 
			document.id.display = 'block'; 
		} 
		else { // IE 4 
			document.all.id.style.display = 'block'; 
		} 
	} 
}
function change(id,num,mit){
    for(i=1;i<=num;i++){
        hideDiv(mit+i);
    }
    showDiv(mit+id);
}
function submitonce(theform){
	//if IE 4+ or NS 6+
	if (document.all||document.getElementById){
	//screen thru every element in the form, and hunt down "submit" and "reset"
		for (i=0;i<theform.length;i++){
			var tempobj=theform.elements[i]
			if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
	//disable em
			tempobj.disabled=true
		}
	}
}
//************ mozgos vége ************ //

