function cabezeraPage(width){
var txt='';
txt+='<!-- Menu Sup -->\n';
txt+='<table width="'+width+'" cellpadding="0" cellspacing="0" border="0">\n';
txt+='<TR><td colspan="2" align="right"><img src="images/pxt.gif" width="100%" height="8"></td></tr>\n';
txt+='<tr><td rowspan="2"><A HREF="home_'+idioma+'.asp"><img src="images/ttilesa.gif" width="140" border="0" height="75"></a></td><td align="right" width="620" height="15" style="background-image:url(images/granb2.jpg);"><a href="javascript:cambiarIdioma();" class="idioma">[ '+otroIdioma+' ]</a></td></tr>\n';

txt+='<TR><td align="center"><img name="fotoCabecera" id="fotoCabecera" src="images/contenido/cabecera/hphoto.jpg" width="620" height="60" border="0"></td></tr>\n';
//<td valign="top" width="40"><br><a href="javascript:cambiarIdioma();" class="idioma">'+otroIdioma+'</a></td>
//txt+='<TR><td colspan="2"><img src="images/pxt.gif" width="100%" height="3"></td></tr>\n';
txt+='<TR><td colspan="2" bgcolor="#cddecd" width="100%" valign="top"><script>document.write(getMenuHorizontalII());</script></td></TR>\n';
//txt+='<TR><td colspan="3"><img src="images/bluebar1.gif" width="100%" height="5" border="0"></td></tr>\n';
//txt+='<TR><td colspan="2"><img src="images/pxt.gif" width="100%" height="1"></td></tr>\n';
txt+='</table>\n';
txt+='<!-- Fin Menu Sup -->\n';
return txt;
}

function piePage(width){
var texto1='| AVISO LEGAL ';
var texto2='Organizador Profesional de Congresos';
if(idioma=='en'){texto1=' | LEGAL NOTICE';texto2=' Professional Congress Organizer'}

var txt='';
txt+='<table width="'+width+'" cellpadding="0" cellspacing="0" border="0" align="center" bgcolor="#ffffff">\n';
txt+='<tr><td height="1" ><img src="images/barrita.gif" align="Left" width="752" height="2" border="0" valign="TOP"></td></tr>\n';
txt+='<tr><td height="16" class="copy" align="center"><a class="copy" href="javascript:abrirVentana(\'aviso_'+idioma+'.html\',\'Aviso\',600,400);">| &copy;Copyright 2005 TILESA OPC'+texto1+'</a> |<a href="mailto:tilesa@tilesa.es" class="copy"> &copy;'+texto2+'</a> </td></tr>\n';
txt+='</table>\n';
//if(location.href.indexOf('/home_')!=-1){changeImgHome();}

return txt;
}

var indiceImg=0;
Img_Home=["images/contenido/home.jpg","images/contenido/iberia.gif","images/contenido/foro.jpg","images/contenido/reunion.jpg"];

function changeImgHome(){//alert("hola");
	//alert(document.images["imgHome"].src);
	if(indiceImg>=Img_Home.length){indiceImg=0;};
	document.images["imgHome"].src=Img_Home[indiceImg];
	indiceImg++;
	setTimeout("changeImgHome()",4000);
}	

