/*
	Funcion : Imprimir_div_val
	Parametros : nombre del div a imprimir
	Devuelve :Nada
	Descripcion : Imprime el div indicado con el titulo en valenciano
*/
function Imprimir_div_val(nombre)
{
	var etiq = document.getElementById(nombre)
	
	var texto = etiq.innerHTML;
	
	document.open();
	document.clear();
	document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n');
	document.write('<html><head>\n');
	document.write('<LINK href="/estilo.css" title="estilo" rel="stylesheet" type="text/css" media="all">\n');
	document.write('</head><body>\n');
	document.write('<table align="center" width="80%" cellpadding="20" cellspacing="0">\n');
	document.write('<tr><td><img src="/imagenes/logo_blau.gif" width="340" height="80" alt="Ajuntament de Xal&oacute;"></td></tr></table>\n');
	document.write('<table align="center" width="60%" cellpadding="0" cellspacing="0">\n');	
	document.write('<tr><td class="titulo_grande_negro_centrado">BAN</td></tr>\n');
	document.write('<tr><td><img src="/img/spacer.gif" width="1" height="20" alt=""></td></tr>\n');
/*	
	for(var i in etiq)
		document.write(i + "=" + etiq[i] + "<br>\n");
*/

	document.write('<tr><td>' + texto + '</td></tr>\n');

	document.write('</table>\n');
	document.write('</body></html>');
	document.close();
	
	window.print();
	history.go(-1);
}

/*
	Funcion : Imprimir_div_cas
	Parametros : nombre del div a imprimir
	Devuelve :Nada
	Descripcion : Imprime el div indicado con el titulo en castellano
*/
function Imprimir_div_cas(nombre)
{
	var etiq = document.getElementById(nombre)
	
	var texto = etiq.innerHTML;
	
	document.open();
	document.clear();
	document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n');
	document.write('<html><head>\n');
	document.write('<LINK href="/estilo.css" title="estilo" rel="stylesheet" type="text/css" media="all">\n');
	document.write('</head><body>\n');
	document.write('<table align="center" width="80%" cellpadding="20" cellspacing="0">\n');
	document.write('<tr><td><img src="/imagenes/logo_blau.gif" width="340" height="80" alt="Ajuntament de Xal&oacute;"></td></tr></table>\n');
	document.write('<table align="center" width="60%" cellpadding="0" cellspacing="0">\n');	
	document.write('<tr><td class="titulo_grande_negro_centrado">BANDO</td></tr>\n');
	document.write('<tr><td><img src="/img/spacer.gif" width="1" height="20" alt=""></td></tr>\n');
/*	
	for(var i in etiq)
		document.write(i + "=" + etiq[i] + "<br>\n");
*/

	document.write('<tr><td>' + texto + '</td></tr>\n');

	document.write('</table>\n');
	document.write('</body></html>');
	document.close();
	
	window.print();
	history.go(-1);
}