//StatusBar message
defaultStatus="Welcome to BusinessExim.Com B2B Business Directory"

//date function
RightNow=new Date();
var themonth;
var month=RightNow.getMonth()+1;
if (month==1) themonth = "January";
if (month==2) themonth = "February";
if (month==3) themonth = "March";
if (month==4) themonth = "April";
if (month==5) themonth = "May";
if (month==6) themonth = "June";
if (month==7) themonth = "July";
if (month==8) themonth = "August";
if (month==9) themonth = "September";
if (month==10) themonth = "October";
if (month==11) themonth = "November";
if (month==12) themonth = "December";
var theDay;
var day=RightNow.getDay();
if (day==1) theDay = "Monday";
if (day==2) theDay = "Tuesday";
if (day==3) theDay = "Wednesday";
if (day==4) theDay = "Thursday";
if (day==5) theDay = "Friday";
if (day==6) theDay = "Saturday";
if (day==7) theDay = "Sunday";
var date=RightNow.getDate();
var year=RightNow.getYear();

