function abrir(imagen,ancho,alto)
{
var image='images/'+imagen+'.jpg';

var ventana=window.open("","","width="+ancho+",height="+alto+",,");
ventana.document.write("<HTML><head>");
ventana.document.write("<TITLE>FONT DEL ROSER</TITLE></head>");
ventana.document.write("<BODY topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0>");
ventana.document.write("<ALIGN=CENTER>");
ventana.document.write("<IMG SRC="+image+" width="+ancho+" height="+alto+">");
ventana.document.write("</ALIGN></BODY></HTML>");
}

function cartel()
{
window.open('cartel.html','','');
}

function recomana()
{
window.open('recomana.php','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=650,height=440');
}

function avi_legal()
{
window.open('avi_legal.php','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=720,height=470');
}

// Función para la fecha del sistema.

function ver_fecha()
{
	var fecha = new Date(); 
	var semana = new Array(7);
	var mes = new Array(12);
	
	semana[0]="Domingo";
	semana[1]="Lunes";
	semana[2]="Martes";
	semana[3]="Miercoles";
	semana[4]="Jueves";
	semana[5]="Viernes";
	semana[6]="Sabado";

	mes[0]="Enero";
	mes[1]="Febrero";
	mes[2]="Marzo";
	mes[3]="Abril";
	mes[4]="Mayo";
	mes[5]="Junio";
	mes[6]="Julio";
	mes[7]="Agosto";
	mes[8]="Septiembre";
	mes[9]="Octubre";
	mes[10]="Noviembre";
	mes[11]="Diciembre";

document.write(semana[fecha.getDay()] + ", " + fecha.getDate() + " de " + mes[fecha.getMonth()] + " del " + fecha.getYear());	
}