function writeSmallDate(){
	monthNames = new Array(
	"enero",
	"febrero",
	"marzo",
	"abril",
	"mayo",
	"junio",
	"julio",
	"agosto",
	"sept.",
	"octubre",
	"nov.",
	"dic."
	);
	theDate = new Date();
	document.write(theDate.getDate() + " de " + monthNames[theDate.getMonth()] + " de " + theDate.getFullYear());
}

function writeLeftNav(){

var hmURL = "http://www.esmas.com";	
var cmURL = "http://www.esmascompras.com.mx";
nav = new Array
	(
	//titulo,URL
	"Fotogaler&iacute;as", hmURL + "/fotogalerias",
	"Artistas",hmURL + "/espectaculos/artistas",
	"M&uacute;sica",hmURL + "/espectaculos/musica",
	"Cine",hmURL + "/espectaculos/cine",
	"EsMas Internet",cmURL + "/internet",
	"Promociones",hmURL + "/promociones"
	);

out = "";
out += '<style type="text/css">';
out += '.navegacionlateral {  font-family: Arial, Helvetica, sans-serif; font-size: 11px; line-height: 17px; color: #FFFFFF; text-decoration: none}';
out += '.fecha {  font-family: Arial, Helvetica, sans-serif; font-size: 10px; line-height: 10px; color: #CCCCCC; font-weight: normal;text-decoration: none} ';
out += '</style>';

out += '<table>';
out += '	<tr>';
out += '		<td><span class="fecha"><SCR' + 'IPT language="JavaScript">writeSmallDate();</SCR' + 'IPT></span></td>';
out += '	</tr>';
out += '	<tr>';
out += '		<td><img src="http://i.esmas.com/img/spacer.gif" width="120" height="3"></td>';
out += '	</tr>';
out += '</table>';
out += '<table width="125" border="0" cellpadding="0" cellspacing="0">';
out += '	<tr>';
out += '		<td valign="top" colspan="2"><img src="http://i.esmas.com/img/b_azul_lomejor.gif" width="125" height="15"></td>';
out += '	</tr>';	
for(i=0;i<nav.length;i++){		

	out += '       	<tr>';
	out += '    		<td width="20" align="center"><span class="bullet"><font color="6597CA">&#149; </font></span></td>';
	out += '    		<td><a href="' + nav[i+1] + '" class="navegacionlateral">' + nav[i] + '</a></td>';
	out += '    	</tr>';

	i++;
}
out += '</table>';
out += '<table border=0 cellpadding="0" cellspacing="0">';
out += '	<tr>';
out += '		<td><img src="http://i.esmas.com/img/spacer.gif" width="125" height="5"></td>';
out += '	</tr>';
out += '</table>';
out += '<table width="125" border="0" cellspacing="0" cellpadding="0">';
out += '	<tr valign="top"> ';
out += '        	<td width="125"><img src="http://i.esmas.com/img/b_azul_opina.gif" ></td>';
out += '	</tr>';
out += '	<tr>';
out += '		<td align="center"><img src="http://i.esmas.com/img/spacer.gif" width="120" height="3"></td>';
out += '	</tr>';
out += '	<tr>';
out += '		<td align="center"><img src="http://i.esmas.com/img/spacer.gif" width="120" height="3"></td>';
out += '	</tr>';
out += '	<tr valign="top">';
out += '        	<td width="125"><scr' + 'ipt language="JavaScript" src="http://vote.esmas.com/votajs.asp?aut=77&syn=1&sus=77&p=11"></scr' + 'ipt></td>';
out += '	</tr>';
out += '</table>';
document.write(out);
}
