// defineix funcio a linkar pels BOOKMARKS
function add2Bookmark() {
if (window.external)
	window.external.addFavorite("http://www.orfeogracienc.org", "Fundació Orfeó Gracienc");
else
	alert("Prem CTRL+D");
return;
}

// cos principal per DATA, definicions i assignació
days = new Array(7)
days[1] = "Diumenge";
days[2] = "Dilluns";
days[3] = "Dimarts"; 
days[4] = "Dimecres";
days[5] = "Dijous";
days[6] = "Divendres";
days[7] = "Dissabte";

months = new Array(12)
months[1] = "de Gener";
months[2] = "de Febrer";
months[3] = "de Març";
months[4] = "d'Abril";
months[5] = "de Maig";
months[6] = "de Juny";
months[7] = "de Juliol";
months[8] = "d'Agost";
months[9] = "de Setembre";
months[10] = "d'Octubre"; 
months[11] = "de Novembre";
months[12] = "de Desembre";

today = new Date(); day = days[today.getDay() + 1]
month = months[today.getMonth() + 1]
date = today.getDate()
year=today.getYear();

if (year < 2000)
year = year + 1900;

datasencera="<font size=-1> "+ day + ", " + date + " " + month + " de " + year + "</font>"
