
with (document) {
	write('<style type="text/css">');
	write('  .CV_Cabecera {color: #388cc2; font-family: Arial; font-weight: bold; font-size: 15px; text-decoration: none;}');
	write('  .CV_Cabecera:visited {color: #388cc2; font-family: Arial; font-weight: bold; font-size: 15px; text-decoration: none;}');
	write('  .CV_Cuerpo {color: #004099; font-family: Arial; font-size: 12px}  ');
	write('  .CB_Cabecera {color: #388cc2; font-family: Arial; font-weight: bold; font-size: 15px; text-decoration: none}');
	write('  .CB_Cabecera:visited {color: #388cc2; font-family: Arial; font-weight: bold; font-size: 15px; text-decoration: none}');
	write('  .CB_Cuerpo {color: #004099; font-family: Arial; font-size: 12px}  ');
	write('  .CA_Cabecera {color: #ffffff; font-family: Arial; font-weight: bold; font-size: 15px; text-decoration: none}');
	write('  .CA_Cabecera:visited {color: #ffffff; font-family: Arial; font-weight: bold; font-size: 15px; text-decoration: none}');
	write('  .CA_Cuerpo {color: #ffffff; font-family: Arial; font-size: 12px}  ');
	write('</style>');
}

function cabeceraCaja(color, texto, pagina) {
	with (document) {
		write('<table BORDER="0" CELLPADDING="0" CELLSPACING="0"> ');
		write('	<tr> ');
		write('		<td><img SRC="img/' + color + '_Cabecera_IZQ.png"></td> ');
		write('		<td background="img/' + color + '_Cabecera_Fondo.png" class="' + color + '_Cabecera">');
		if (pagina==null) {write(texto + '</td> ');}
			else {write('<a href="' + pagina + '" class="' + color + '_Cabecera">' + texto + '</a></td>');}
		write('		<td><img SRC="img/' + color + '_Cabecera_DER.png"></td> ');
		write('	</tr> ');
		write('	<tr> ');
		write('		<td background="img/' + color + '_Cuerpo_IZQ.png" ><img width="15" height="1" SRC="img/punto.gif"></td> ');
		write('		<td background="img/' + color + '_Cuerpo_Fondo.png" class="' + color + '_Cuerpo"> ');
	}
}

function pieCaja(color) {
	with (document) {
		write('		</td> ');
		write('		<td background="img/' + color + '_Cuerpo_DER.png"><img width="15" height="1" SRC="img/punto.gif"></td> ');
		write('	</tr> ');
		write('	<tr> ');
		write('		<td><img SRC="img/' + color + '_Pie_IZQ.png"></td> ');
		write('		<td background="img/' + color + '_Pie_Fondo.png"></td> ');
		write('		<td><img SRC="img/' + color + '_Pie_DER.png"></td> ');
		write('	</tr> ');
		write('</table> ');
	}
}
