function fecha(){
meses = new Array("enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre");
dias = new Array("Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sábado");

today = new Date()
document.write(dias[today.getDay()]+", "+ today.getDate()+" de "+meses[today.getMonth()]+" de "+today.getFullYear());
}
function buscar(){
	f= document.getElementById('f_buscar');
	destino = f.busq.value.replace(/\s/g,'+');
	window.location="/busqueda/"+destino+".htm";
}

function recomend(id_joc){
	f=document.getElementById('f_recom');
	f.juego_recom.value = id_joc;
	f.submit();
}
function add_fav(id_joc){
	f=document.getElementById('f_fav');
	f.juego_fav.value = id_joc;
		f.submit();
}
// ADMIN functions
function alta(){
	f=document.getElementById('f_register');
	f.submit();
}
function nueva_cat(){
	f=document.getElementById('f_new_cat');
	if(n_cat = prompt("Nom nova categoria","")){
		f.new_cat.value=n_cat;
		f.submit()
	}
}
// JOCS functions
function show_color(id){
	for(i=1;i<=id;i++){
	s = document.getElementById('p'+i);
	s.src = '/img/voto_1.gif';
	}
}
function hide_color(id){
	for(i=1;i<=id;i++){
	s = document.getElementById('p'+i);
	s.src = '/img/voto_0.gif';
	}
}
function votar(id){
	f = document.getElementById('f_voto');
	f.puntuacion.value = id;
	f.submit()
	
}
function add_coment(id){
	w = window.open("/add_coment.php?game="+id,"", "dependent=yes, resizable =no, scrollbars=yes, alwaysRaised=yes, width=600, height =300");
	w.focus();
}
// GENERAL functions
function favoritos(){
	if (window.sidebar&&window.sidebar.addPanel)
window.sidebar.addPanel("Juegos on-line gratis!!","http://www.jugandonline.net","");
else
window.external.AddFavorite("http://www.jugandonline.net","Juegos on-line gratis!!")
}

function go_pag(id_pag){
	f= document.getElementById('f_paginacion');
	f.pagina.value = id_pag;
	f.submit();
}