<!--
function getEmail(cEmail)
	 { 
	 	var strList="";
	 	for (var i = 0; i < cEmail.options.length; i++) 
	 		if (cEmail.options[i].selected) 
	 			strList = strList + ";" + cEmail.options[i].value ;
	 	document.getElementById('default_value').value=strList.substr(1)
	 }
function checkAll(ckAll)
	 { 
	 	var strList="";
	 	var cEmail=document.getElementById('numbers')
	 	if(ckAll.checked)
	 		{
	 		for (var i = 0; i < cEmail.options.length; i++)
 				strList = strList + ";" + cEmail.options[i].value ;
	 		document.getElementById('default_value').value= strList.substr(1)
	 		}
 		else
 			getEmail(cEmail);
	 }

var isNS4 = (navigator.appName=="Netscape")?1:0;
function nttKeyNone(keyCode,strNone) 
	{
		var chrKey=String.fromCharCode(keyCode);
		strNone =" " + strNone;
	    	if(strNone.indexOf(chrKey)>0)
			return false;
		return true;
	}
function nttKeyOK(keyCode,strNone) 
	{
		
		var chrKey=String.fromCharCode(keyCode);
		strNone =" " + strNone;
	    	if(keyCode==8 || keyCode==0 || chrKey=="" || strNone.indexOf(chrKey)>0)
			return true;
		return false;
	}
function openmypage(zStyle,zType,zPath,zTitle,zDes,zRec){
	ajaxwin=dhtmlwindow.open(zStyle, zType, zPath, zTitle,zDes,zRec)
	//ajaxwin.onclose=function(){return window.confirm("Are you sure close this window ?")}
}
-->