function selOpen(doID,bottom){
	var openSel = document.getElementById(doID);
	if(openSel.style.display==""||openSel.style.display=="none"){
		openSel.style.display="block";
                openSel.style.bottom=bottom;
		openSel.onmouseover=function(){openSel.style.display="block";}
		openSel.onfocus=function(){openSel.style.display="block";}
		openSel.onmouseout=function(){openSel.style.display="none";}
		openSel.onblur=function(){openSel.style.display="none";}
	}else{
		openSel.style.display="none";
	}
}

function __doPostBack(eventTarget, eventArgument) {
		var theform;
		if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
			theform = document.Form1;
		}
		else {
			theform = document.forms["Form1"];
		}
		theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
		theform.__EVENTARGUMENT.value = eventArgument;
		theform.submit();
}
