<!--
function flvFPW1(){//v1.44
// Copyright 2002-2004, Marja Ribbers-de Vroed, FlevOOware (www.flevooware.nl/dreamweaver/)
var v1=arguments,v2=v1[2].split(","),v3=(v1.length>3)?v1[3]:false,v4=(v1.length>4)?parseInt(v1[4]):0,v5=(v1.length>5)?parseInt(v1[5]):0,v6,v7=0,v8,v9,v10,v11,v12,v13,v14,v15,v16;v11=new Array("width,left,"+v4,"height,top,"+v5);for (i=0;i<v11.length;i++){v12=v11[i].split(",");l_iTarget=parseInt(v12[2]);if (l_iTarget>1||v1[2].indexOf("%")>-1){v13=eval("screen."+v12[0]);for (v6=0;v6<v2.length;v6++){v10=v2[v6].split("=");if (v10[0]==v12[0]){v14=parseInt(v10[1]);if (v10[1].indexOf("%")>-1){v14=(v14/100)*v13;v2[v6]=v12[0]+"="+v14;}}if (v10[0]==v12[1]){v16=parseInt(v10[1]);v15=v6;}}if (l_iTarget==2){v7=(v13-v14)/2;v15=v2.length;}else if (l_iTarget==3){v7=v13-v14-v16;}v2[v15]=v12[1]+"="+v7;}}v8=v2.join(",");v9=window.open(v1[0],v1[1],v8);if (v3){v9.focus();}document.MM_returnValue=false;return v9;}
//-->
<!--
function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop){newWindow=window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);newWindow.document.open();newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');if(imageType=="swf"){newWindow.document.write('<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');newWindow.document.write('<param name=movie value=\"'+imageName+'\"><param name=quality value=high>');newWindow.document.write('<embed src=\"'+imageName+'\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');newWindow.document.write('</embed></object>');}else{newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">');}
newWindow.document.write('</body></html>');newWindow.document.close();newWindow.focus();}
//-->
<!--
function mostrarOcultar(ly) { //v6.0
	var elLayer = document.getElementById(ly);
		if( elLayer.style.display=='block' ){
		elLayer.style.display='none';
	} else {
		elLayer.style.display='block';
	}
}
//-->
<!--
function Item(){
this.length = Item.arguments.length
for (var i = 0; i < this.length; i++)
this[i] = Item.arguments[i]
}
function Fecha() {
var ndia = new Item('Domingo', 'Lunes', 'Martes', 'Mi&eacute;rcoles', 'Jueves',
'Viernes', 'S&aacute;bado')
var nmes = new Item('enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio',
'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre')
var ahora
var fecha = new Date()
var ano = fecha.getYear()
var mes = fecha.getMonth()
var dia = fecha.getDay()
var aux = "" + fecha
if (ano<10) {
ano2 = "200" + eval(ano)
}
else if (ano<80) { // ano tiene 2 dígitos 19xx (más de 80)
ano2 = "20" + ano
}
else if (ano<=99) { // ano tiene 2 dígitos 20xx (menor de 80)
ano2 = "19" + ano
}
else if (ano<1000) { // ano tiene 3 dígitos (100 es 2000)
ano2 = eval(ano) + eval(1900)
}
else {
ano2 = ano // ano tiene 4 dígitos
}

ahora = ndia[dia] + " " + aux.substring(7, 10) + " de " + nmes[mes] + " de " + ano2
return ahora
}
<!--