///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// funcion que crea el estilo "lema" y la fila que contiene el logo de Movelia, y el lema /////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function dibuja_logo(url){
	document.write('<style>.lema{FONT-WEIGHT: 500;FONT-SIZE: 15px;COLOR: black;FONT-FAMILY: Arial; font-weight: bolder;}</style>');
	document.write('<tr><td colspan="2" align="center" ><a href="' + url + '" TABINDEX="-1" title="Home Movelia">');
	document.write('<img src="images/img_movelia_logoV2.gif" width="128" height="53" border="0" TABINDEX="-1"></a></td></tr>');
	document.write('<tr><td colspan="2" align="center" height="26"><a class="lema">' + lema + '</a></td></tr>');
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////