// JavaScript Document
/*Incluir fitxers externs (js i css)*/

function include_dom(script_filename){
        var html_doc = document.getElementsByTagName('head').item(0);
        var js = document.createElement('script');
        js.setAttribute('language', 'javascript');
        js.setAttribute('type', 'text/javascript');
        js.setAttribute('src', script_filename);
		document.getElementsByTagName('head')[0].appendChild(js);
        //html_doc.appendChild(js);
        return false;
} 

function includeCSS(p_file) {
	var v_css  = document.createElement('link');
	v_css.rel = 'stylesheet'
	v_css.type = 'text/css';
	v_css.href = p_file;
	document.getElementsByTagName('head')[0].appendChild(v_css);
}
