           
            function xajax_updateElement(url, name) {
		    new ajax( url+'&amp;{/literal}{$ajax_rand}{literal}',{method: 'GET', update: $(name) });
		    
            }
	    function xajax_updatePostElement(url, name, postData) {
		    new ajax( url+'&amp;{/literal}{$ajax_rand}{literal}',{postBody: postData, update: $(name) });
		    
            }
	    function CheckNumericKeyInfo($char, $mozChar,type) {
	        if(type=='tel') {
		    if($mozChar != null) { // Look for a Mozilla-compatible browser
		    if(($mozChar >= 48 && $mozChar <= 57) || $mozChar == 0 || $char ==
		    8 || $mozChar == 13 || $mozChar == 32) $RetVal = true;
		    else {
		    $RetVal = false;
		    }
		    }
		    else { // Must be an IE-compatible Browser
		    if(($char >= 48 && $char <= 57) || $char == 13 || $char == 32) $RetVal = true;
		    else {
		    $RetVal = false;
		    }
		    }
		} else {
		    if($mozChar != null) { // Look for a Mozilla-compatible browser
		    if(($mozChar >= 48 && $mozChar <= 57) || $mozChar == 0 || $char ==
		    8 || $mozChar == 13) $RetVal = true;
		    else {
		    $RetVal = false;
		    }
		    }
		    else { // Must be an IE-compatible Browser
		    if(($char >= 48 && $char <= 57) || $char == 13) $RetVal = true;
		    else {
		    $RetVal = false;
		    }
		    }
		}
		return $RetVal;
	    }

