function Popup(URL,w,h,name,scroll) {
  window.self.name = "popupWin";
  var remote = window.open(URL,name,"width=" + w + ",height=" + h + ",toolbar=0,location=0,directories=0,resizable=1,status=1,menubar=0,scrollbars=" + scroll );
}

function bookIt(argVal)
{
   var bookData = new Array();
   bookData = argVal.split("|");
   if (document.all)
      window.external.AddFavorite(bookData[0], bookData[1]);
   else
      alert("Sorry, Netscape users must do it manually.");
}

var now = new Date();
var temp=now+'';
var weekday = now.getDay();
	if (weekday==0) weekdayname = "Sunday";
	if (weekday==1) weekdayname = "Monday";
	if (weekday==2) weekdayname = "Tuesday";
	if (weekday==3) weekdayname = "Wednesday";
	if (weekday==4) weekdayname = "Thursday";
	if (weekday==5) weekdayname = "Friday";
	if (weekday==6) weekdayname = "Saturday";	
var month = now.getMonth();
	if (month==0) monthname = "January";
	if (month==1) monthname = "February";
	if (month==2) monthname = "March";
	if (month==3) monthname = "April";
	if (month==4) monthname = "May";
	if (month==5) monthname = "June";
	if (month==6) monthname = "July";
	if (month==7) monthname = "August";
	if (month==8) monthname = "September";
	if (month==9) monthname = "October";
	if (month==10) monthname = "November";
	if (month==11) monthname = "December";
var day = now.getDate();
var year=temp.substring(temp.length-4,temp.length);

