
function myDate() {
	var mydate = new Date();
	
	var month = mydate.getMonth();

	if (month == 0)
		month = "Enero";
	else if (month == 1)
		month = "Febrero";
	else if (month == 2)
		month = "Marzo";
	else if (month == 3)
		month = "Abril";
	else if (month == 4)
		month = "Mayo";
	else if (month == 5)
		month = "Junio";
	else if (month == 6)
		month = "Julio";
	else if (month == 7)
		month = "Agosto";
	else if (month == 8)
		month = "Septiembre";
	else if (month == 9)
		month = "Octubre";
	else if (month == 10)
		month = "Noviembre";
	else if (month == 11)
		month = "Diciembre";
	
	return("Menorca, " + mydate.getDate() + " de " + month + " de " + mydate.getFullYear());
}

function addFav(){
   if ( (navigator.appName == "Microsoft Internet Explorer") &&
		(parseInt(navigator.appVersion) >= 4) ) {
      var url="http://www.armarsan.com/"; 
      var titulo="ELS JARDINS D’ALÔ";
      window.external.AddFavorite(url,titulo);
   } 
   else { 
      if (navigator.appName == "Netscape") 
         alert("Presione Crtl+D para agregar este sitio en sus Bookmarks"); 
   }
}

function newWindow(texttitle,wt,ht){
var w = wt;
var h = ht;
var l = (screen.availWidth - w) / 2; 
var t = (screen.availHeight - h) / 2;

var opt = "fullscreen=0 , toolbar=0 , location=0 , status=0 , menubar=0 , scrollbars=0 , resizable=0 , " + 
"width=" + w + 
" , height=" + h + 
", left=" + l + 
" , top=" + t;

window.open(texttitle, "wp", opt, false);
}




