function printDate(){
document.write('<img src="' + days[theDate.getDate()] + '">');
document.write('<br>');
document.write('<br>');
document.write('<img src="' + months[theDate.getMonth()+1] + '" alt="Hoje é dia ' + theDate.getDate() + '">');
}

function printCalender(){
document.write('<img src="' + months[theDate.getMonth()+1] + '" alt="Hoje é dia ' + theDate.getDate() + '">');
}

function launchwin(page){
OpenWin = this.open(page, 'CtrlWindow', 'toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=250,height=250,z-lock=yes');
setTimeout('OpenWin.focus()', 250);
}

function Start(page,w,h,bar){
var parameters="toolbar=no,menubar=no,location=no,scrollbars=" + bar + ",resizable=no,width=" + w + ",height=" + h ;
OpenWin = this.open(page, "CtrlWindow", parameters);
setTimeout('OpenWin.focus()', 250);
}

function printWindow(){
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
