<!-- hide script from old browsers

function date( ) {
    var thedate = new Date();
    var mm = thedate.getMonth() + 1;
    var dd = thedate.getDate();
    var yy = thedate.getYear();
    if (yy < 200) { 
	if (yy <100) { yy = yy + 100 } 
	yy = yy + 1900 
	}
    datestring = mm + "/" + dd + "/" + yy;
    document.write(datestring);
}

// end hiding script from old browsers -->