//<!--

var menuImage11=new Image();
var menuImage12=new Image();
var menuImage21=new Image();
var menuImage22=new Image();

menuImage11.src="images/hmenu.gif";
menuImage12.src="images/hmenu2.gif";
menuImage21.src="images/hmenustart.gif";
menuImage22.src="images/hmenustart2.gif";

function makeBlue(id1,n){
	if (n==1){
		document.getElementById("hmenunormal"+id1).style.backgroundImage="url(images/hmenu2.gif)";
		document.getElementById("slink"+id1).className="smenu2";
		if (id1==0) document.getElementById("zhmenunormal").style.backgroundImage="url(images/hmenustart2.gif)";
		}
	else {
		document.getElementById("hmenunormal"+id1).style.backgroundImage="url(images/hmenu.gif)";
		document.getElementById("slink"+id1).className="smenu";
		if (id1==0) document.getElementById("zhmenunormal").style.backgroundImage="url(images/hmenustart.gif)";
		}
	}
	
	
function makeActive(id1,id2,id3){
	if (document.getElementById(id1).value!="" && document.getElementById(id2).value!=""){
		document.getElementById(id3).disabled=false;
		}
	else {
		document.getElementById(id3).disabled=true;
		}
	}
	
	
function changeTab(url,n,i){
	for (var k=0; k<n; k++){
		document.getElementById("tabi"+k).style.background="url(images/thnormal1.gif) no-repeat top left";
		}
	document.getElementById("tabi"+i).style.background="url(images/thselected1.gif) no-repeat top left";
	fininfo.location.href=url;
	}

//-->