// JavaScript Document

<!-- hide script from old browsers

function a_popup() 
{ 
alert('pop up alert'); 
}

function date_stamp()
{
test = new Date()
month = test.getMonth()
month = (month * 1) + 1
day = test.getDate()
year = test.getFullYear()
document.write(" ",month,".",day,".",year," ")
}

// end hiding script from old browsers -->