ieHover=function(){
	if (document.all && document.getElementById) {
	var LIs = document.getElementsByTagName("LI");
	
	for(i=0;i<LIs.length;i++){
		LIs[i].onmouseover=function(){
			//alert (this.parentElement.tagName);
			this.className+="iehover";
			//alert(this.className);
		}
		LIs[i].onmouseout=function(){
			this.className=this.className.replace(new RegExp("iehover\\b"),"");
		}
	}
	}
}
if(window.attachEvent)window.attachEvent("onload",ieHover);

function printPage() {
	//alert(location.href);
	if (location.href.indexOf('id=')>-1)
		var url = location.href+'&is_print=1';
	else
		var url = location.href+'?is_print=1';
	new_window = window.open(url, 'printwindow', 'width=710,height=600,status=no,scrollbars=yes,resizable=yes');
	//new_window.print();
}

function showMemberNumber() {
	var group = document.frmUserReg.elements['tx_lakuser_pi1[function]'].value;
	if (group==23) {
		document.getElementById("member_number_block").style.display = 'block';
	}
	else {
		document.getElementById("member_number_block").style.display = 'none';
	}
}