/**
 * @author :)
 */

function loadinlinescript(){
var objhead = window.document.getElementsByTagName('body')[0]; 
var objscript = window.document.createElement('script'); 
objscript.text = ajax.responseText;
objscript.type = 'text/javascript';
objhead.appendChild(objscript);
} 

var headID = document.getElementsByTagName("head")[0];         


var newScript3 = document.createElement('script');
newScript3.type = 'text/javascript';
newScript3.src = '/js/validacion/jquery.validate.min.js';
headID.appendChild(newScript3);

var newScript2 = document.createElement('script');
newScript2.type = 'text/javascript';
newScript2.src = '/js/validacion/vconfig.js';
headID.appendChild(newScript2);
