<!--

function get_date(parm)
{
var today = new Date();
var month_names = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var day_week = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
day = today.getDay();
month = today.getMonth();
date = today.getDate();
year = today.getYear() + "";
year4 = "20"+ year.substring(year.length-2,year.length);

if (parm == 1)
{
 // if showing name of month
 document.writeln(day_week[day] + "," + month_names[month] + " " + date + "," + year4);
}
else
{
 // otherwise, show number of month
 document.writeln(day_week[day] + "," + (month+1) + "." + date + "." + year4);
}
}


window.status="Pushkar India Travels"

-->
