function loginPop() {
	var loginWin = window.open("http://www.myazbar.org/loginPop.cfm", "Login", "width=500,height=290,status=no,resizable=yes,top=" + ((screen.availHeight/2)-145) + ",left=" + ((screen.availWidth/2)-250));
	loginWin.opener = self;
	loginWin.focus();
}
todate = new Date();
var monthnames = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var tag = (todate.getHours() >= 12)?"PM":"AM";
var hr = (todate.getHours() > 12)?(todate.getHours() - 12):((todate.getHours() == 0)?"12":todate.getHours());
var mn = todate.getMinutes();
my_date = monthnames[todate.getMonth()] + "." + todate.getDate() + "." + todate.getFullYear() + " " + hr + ":" + mn + " " + tag;
sal = "Morning";
if (todate.getHours() > 12) {
	sal = "Afternoon";
}
if (todate.getHours() > 18) {
	sal = "Evening";
}
