<!--
var xmlEncoding="<?xml version='1.0' encoding='iso-8859-1' ?>";

function traerObjetoPorNombre(mName)
{
if (navigator.appName.indexOf('Microsoft')!=-1)
	return window[mName];
else
	return document.getElementById(mName);
}

function ChequeoVersion()
{
this.version=navigator.appVersion;
this.agente=navigator.userAgent;
this.dom=document.getElementById?1:0;
this.ns6=(this.dom && parseInt(this.version) >= 5) ?1:0;
this.opera5=this.agente.indexOf('Opera')>-1;
if (this.opera5) this.ns6 = 0;
this.ie5=(this.version.indexOf('MSIE 5')>-1 && this.dom && !this.opera5)?1:0;
this.ie6=(this.version.indexOf('MSIE 6')>-1 && this.dom && !this.opera5)?1:0;
this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
this.ns4=(document.layers && !this.dom)?1:0;
this.soporta=(this.ie6 || this.ie5 || this.ie4 || this.ns6);
return this;
}
var flashMode = false;

var navegador=new ChequeoVersion()
if (navegador.ns4)
{
	scrX= innerWidth;
	scrY= innerHeight;
	onresize= function()
	{
	if(scrX!= innerWidth || scrY!= innerHeight)
		history.go(0);
	}
}
//-->

