function initValidation()
{
      var objForm = document.forms["requestform"];
      objForm.firstname.required = 1;
      objForm.firstname.regexp = /^\w*$/;
	  
	  objForm.lastname.required = 1;
      objForm.lastname.regexp = /^\w*$/;

}

window.onload = function() { initValidation() };

