var INCLUDE_JS = ["/contenidos/recurso_tecnico/s11_comun/es_s11/scripts/s11_General.js"];
	
if (window.addEventListener) 
{
	window.addEventListener('load', JSInclude, false);
	
} else if (window.attachEvent) 
{
                window.attachEvent('onload', JSInclude);
                
}

function JSInclude()
{
	for(var t=0; t< INCLUDE_JS.length; t++)
	{
		url = INCLUDE_JS[t];
		
		if(url.indexOf("?")>0)
		{
			url+="&tmr=" + Math.random();
		}
		else
		{
			url+="?tmr=" + Math.random();
		}
		if(document.getElementById("ss.JSInclude." + t)!=null)
		{
			document.getElementsByTagName("head")[0].removeChild(document.getElementById("ss.JSInclude." + t));
		}
		var JS_Include = document.createElement("script");
		JS_Include.setAttribute("charset", "iso-8859-1");
		JS_Include.id="ss.JSInclude." + t;
		JS_Include.src = url;
	    document.getElementsByTagName("head")[0].appendChild(JS_Include);
	}
}