 function include(file)  
 {  
   
	var headID = document.getElementsByTagName("head")[0];         
	var newScript = document.createElement('script');
	newScript.type = 'text/javascript';
	newScript.src = file;
	headID.appendChild(newScript);
   
 }  
   
 /* include any js files here */  
 /* docRoot is defined before this file is included in the head */
 include(docRoot+'js/javascripts.js');  
 include(docRoot+'js/validation.js.php?lang_id=en');  

 
