<!-- Begin



var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var datespace		= "7"		// SPACE ABOVE DATE





// COPYRIGHT 2010 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE


document.write('<img src="picts/spacer.gif" width="10" height="'+datespace+'" alt="image"><br>');


// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Dom.","2ªf.","3ªf.","4ªf.","5ªf.","6ªf.","Sáb.")
var monthname=new Array("Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ", ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}


//  End -->
