function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}




function charAlert(n,field) {
var textField = field;

if(textField.value.length > n){ 

textField.value= textField.value.substring(0,n) 

textField.blur() 

alert("No more than " + n + " characters can be entered") 
}

} 

