<!--Código redirección midominio.com a www.midominio.com

//if (document.location.hostname != 'localhost' && document.location.hostname.substr(0, 3) != 'www') {
  //  document.location.href = 'http://www.' + document.location.hostname;
//}

function fecha(){
	var mydate=new Date()
			var theYear=mydate.getFullYear()
			var day=mydate.getDay()
			var month=mydate.getMonth()
			var daym=mydate.getDate()
			if (daym<10)
			daym="0"+daym
			var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
			var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
			document.write(dayarray[day]+", "+montharray[month]+" "+daym+", "+theYear)
}

function clickhere()
{
	setInterval('parpadeo()',400);
}

function parpadeo()
{
   //document.getElementById("clickbrochure").filters.alpha.opacity=(document.getElementById("clickbrochure").filters.alpha.opacity+5)%100;
	with (document.getElementById("parpadeo").style)
		visibility = (visibility == "visible") ? "hidden" : "visible";
}