/*COMMON JAVASCRIPT FUNCTIONS FOR ALL PAGES
	* FUNCTIONS INLUDED IN THIS FILE
	* CountChars(name,item,max_length)

	
	* Rob 08-17-04
*/

function CountChars(name,item,language,max_length){
	
	if (item.value.length > max_length ){
		if(language = "francais"){
			alert("Votre \'" + name + "\' dépasse " + max_length +  " charactères.\nVous avez " + item.value.length + " charactères");
		}else{
			alert("Your \'" + name + "\' cannot exceed " + max_length +  " characters.\nYou have entered " + item.value.length + " characters");
		}
	}
}
