/* Pagina Init */
init_execute = null;
function init(){
	if (typeof init_execute == "function"){
		init_execute();
		init_execute = null;
	}
}
var initAjax = function(){ init(); }
window.onload = init;

function include(file){
	document.write('<script language="javascript" type="text/javascript" src="'+file+'"></script>');
}
