\n');
}
var myWidth = 0;
var myHeight = 0;
//var minWidth = 1024;
//var minHeight = 1619;
var minWidth = 950;
var minHeight = 1524;
var minHeight = 924;
function sizeMe()
{
if ( typeof( window.innerWidth ) == 'number' )
{
//No IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
}
else if ( document.documentElement && document.documentElement.clientWidth )
{
//IE 6+
myWidth = document.documentElement.clientWidth;
}
else if ( document.documentElement && document.documentElement.clientHeight )
{
//IE 6+
myHeight = document.documentElement.clientHeight;
}
else if ( document.body && document.body.clientWidth )
{
//IE 4
myWidth = document.body.clientWidth;
}
else if ( document.body && document.body.clientHeight )
{
//IE 4
myHeight = document.body.clientHeight;
}
}
function resizeMe () {
sizeMe();
var flash = document.getElementById("CMS");
if ( myWidth <= minWidth )
{
flash.setAttribute("width", minWidth);
}
else
{
flash.setAttribute("width", "100%");
}
if ( myHeight <= minHeight )
{
flash.setAttribute("height", minHeight);
}
else
{
flash.setAttribute("height", "100%");
}
}
//-->
Para ver esta web es necesario tener Adobe Flash Player instalado.
Puede descargarlo gratuitamente desde este enlace: http://www.adobe.com/go/getflashplayer/.