
function dropdown(topOrBottom) {
      whichOne = document.browse.elements[topOrBottom].selectedIndex;
      document.browse.elements[topOrBottom].selectedIndex = 0;
      document.location = document.browse.elements[topOrBottom].options[whichOne].value;
}
//open a window with the following url, width and height
function openWin(url, myWidth, myHeight){
   myWindow = window.open( url, "theWindow", "toolbar=no,menubar=yes,scrollbars=yes,resizable=yes,status=no,location=no,width=" + myWidth + ",height=" + myHeight);
   myWindow.focus();
}
//rollover
    var imgPath = '/images/front/';
function imgToggle(imgObjectName, imgObjectState) {
    imgObject = new Object();
    imgObject = imgObjectName;
    imgObject.src = imgPath + imgObjectState;
}

function printDate(){
var now = new Date();
var thisdate = now.getDate();
var thisday = now.getDay();
var thismonth = now.getMonth();
var thisyear = now.getYear();
var thishour = now.getHours();
var thisminute = now.getMinutes();
var thissecond = now.getSeconds();
var thistime = now.getTime();
//
if (thisday == 0) dayname = "Sunday";
if (thisday == 1) dayname = "Monday";
if (thisday == 2) dayname = "Tuesday";
if (thisday == 3) dayname = "Wednesday";
if (thisday == 4) dayname = "Thursday";
if (thisday == 5) dayname = "Friday";
if (thisday == 6) dayname = "Saturday";
//
if (thismonth == 0) monname = "January";
if (thismonth == 1) monname = "February";
if (thismonth == 2) monname = "March";
if (thismonth == 3) monname = "April";
if (thismonth == 4) monname = "May";
if (thismonth == 5) monname = "June";
if (thismonth == 6) monname = "July";
if (thismonth == 7) monname = "August";
if (thismonth == 8) monname = "September";
if (thismonth == 9) monname = "October";
if (thismonth == 10) monname = "November";
if (thismonth == 11) monname = "December";
//
if (thisyear < 2000) thisyear = thisyear + 1900;
//
document.write("<b>" + dayname + "</b><br>" + monname + " " + thisdate + ", " + thisyear);
}