<!--
function Viewsubmenu(what_menu,play) {
  d = document.all[what_menu];
  if (document.all[what_menu] != null) {
  if (d.style.visibility == "hidden") {
  //	if (play) {
	//	d.filters.blendTrans.Apply();
	//	d.filters.blendTrans.Play();
	//}
	d.style.visibility = "visible";
  }//if	
  }//if
}

function Hidesubmenu(what_menu) {
  d = document.all[what_menu];
  if (document.all[what_menu] != null) {
  if (d.style.visibility == "visible") {
		d.style.visibility = "hidden";
  }//if	
  }//if	
}

function rebuild() {
	document.all["news"].style.left = document.all["coord"].offsetLeft+20;
	document.all["catalog"].style.left = document.all["coord"].offsetLeft+172;
	document.all["avto"].style.left = document.all["coord"].offsetLeft+262;
	document.all["spr"].style.left = document.all["coord"].offsetLeft+369;
	document.all["rules"].style.left = document.all["coord"].offsetLeft+475;
}

function submitonce(theform) {
	// if IE 4+ or NS 6+
	if (document.all || document.getElementById) {
		// 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 it
				tempobj.disabled=true;
			}
		}
	}
}

//-->

