//var timer = null;
//closeHelp.onmouseout = function() { timer = window.setTimeout(closeHelp, 100); }
//closeHelp.onmouseover = function() { window.clearTimeout(timer); }

function mouseOverHelp(Obj, Id){
	var helpObj = document.all['popup_'+Id];
	var windWidth = document.body.clientWidth;
	//var helpObj = document.getElementById("popup_"+Id);
	helpObj.style.marginTop = -Obj.scrollHeight*2+"px";
	helpObj.style.width = windWidth-300+"px";
	helpObj.style.left = 20+"px";
	helpObj.style.visibility = "visible";
	//alert(windWidth);
}

function closeHelp(Id){
	var helpObj = document.all['popup_'+Id];
	helpObj.style.visibility = "hidden";
	
}

function heightDiv(Div, Size){
	var Obj = document.all[Div];
	Obj.style.height = document.documentElement.clientHeight-Size+"px";
}

function jumpSrc(Sel, Frm){
	var srcQuery = Sel.options[Sel.selectedIndex].value;
	//window.location = srcQuery;
	Frm.submit();
}

expertOn = new Image;
expertOn.src = "/images/expertJobButtonOn.jpg";
partControlOn = new Image;
partControlOn.src = "/images/partControlButtonOn.jpg";
commGoOtclickOn = new Image;
commGoOtclickOn.src = "/images/commGoOtclickButtonOn.jpg";

function onClickButton(Button, Img) {
	var Obj = Button;
	Obj.src = Img;
}

/*function SetImgMain(){
	var Obj = document.all['ImgBgMain'];
	Obj.style.bottom = Obj.offsetHeight + document.body.clientHeight + document.body.scrollTop + "px"
	//alert(Obj.offsetHeight + document.body.clientHeight + document.body.scrollTop + "px");
}

document.onMouseMove = SetImgMain;*/

//window.onscroll = SetImgMain;
