<!--
	var ie = document.all
	var dom = document.getElementById
	function lighter(argRow,argColor){
		argRow.style.backgroundColor=argColor
	}
	
	function selector(argTable,argRowLocation,argCheckBox){
		var theTable = document.getElementById(argTable)
		var theRow = theTable.getElementsByTagName("tr")
		var theCheckBox = (ie)?ie.item(argCheckBox):dom(argCheckBox)
		var i_Row = argRowLocation
		if(theCheckBox.length){
			for(var i=0;i<=theCheckBox.length-1;i++){
				if(theCheckBox[i].checked==true){
					lighter(theRow[i+i_Row],'#F7E7C6')
					theRow[i+i_Row].style.color = "#000000"
				}else{
					lighter(theRow[i+i_Row],'')
					theRow[i+i_Row].style.color = ""
					theRow[i+i_Row].style.color = ""
				}
			}
		}else{
			if(theCheckBox.checked==true){
				lighter(theRow[i_Row],'#F7E7C6')
				theRow[i_Row].style.color = "#000000"
			}else{
				lighter(theRow[i_Row],'')
				theRow[i_Row].style.color = ""
			}
		}
	}
	
	function confirm_msg(argFrm,argMsg){
		var a = confirm(argMsg)
		if(a){
			argFrm.submit()
		}
	}
	
	function regular(string) {
    	if (!string) return false;
   	 	var Chars = "0123456789";

			for (var i = 0; i < string.length; i++) {
       			if (Chars.indexOf(string.charAt(i)) == -1)
			      	return false;
    		}
		return true;
	}
	
	function blockAlpha(k) {
		var allow = false;
		if(k==46){
			allow = true;
		}else if(k >= 48 && k <= 57){
			allow = true;
		}
		return(allow);
	}
//-->