function init () {
 var theForm = document.getElementById ( 'quoterequest' );
 if ( lg == 'fr' ) {
		theForm.last.focus ()
		theForm.last.select ()
	} else {
		theForm.first.focus ()
		theForm.first.select ()
	}
}

function validator ( theForm ) {
 if ( theForm.first.value == "" || theForm.last.value == "" || theForm.email.value == "" || theForm.type.value == "" ) {
  alert ( msg );
  if ( lg == 'fr' ) {
			theForm.last.focus ()
			theForm.last.select ()
		} else {
   theForm.first.focus ()
			theForm.first.select ()
		}
  return ( false );
	} else {
  return ( true );
 }
}

