function startclock()
{
var thetime=new Date();
var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var nday=thetime.getDay();
var nmonth=thetime.getMonth();
var ntoday=thetime.getDate();
var nyear=thetime.getYear();
var AorP=" ";
var sMonth = "";

if (nhours>=12)
    AorP="pm";
else
    AorP="am";

if (nhours>=13)
    nhours-=12;

if (nhours==0)
   nhours=12;

if (nsecn<10)
 nsecn="0"+nsecn;

if (nmins<10)
 nmins="0"+nmins;

if (nday==0)
  nday="Sunday";
if (nday==1)
  nday="Monday";
if (nday==2)
  nday="Tuesday";
if (nday==3)
  nday="Wednesday";
if (nday==4)
  nday="Thursday";
if (nday==5)
  nday="Friday";
if (nday==6)
  nday="Saturday";

nmonth+=1;
switch (nmonth){
    case 1:
        sMonth = "January";
        break;
    case 2:
        sMonth = "February";
        break;
    case 3:
        sMonth = "March";
        break;
    case 4:
        sMonth = "April";
        break;
    case 5:
        sMonth = "May";
        break;
    case 6:
        sMonth = "June";
        break;
    case 7:
        sMonth = "July";
        break;
    case 8:
        sMonth = "August";
        break;
    case 9:
        sMonth = "September";
        break;
    case 10:
        sMonth = "October";
        break;
    case 11:
        sMonth = "November";
        break;
    case 12:
        sMonth = "December";
        break;
    default:
        sMonth = "February";
        break;
}

if (nyear<=99)
  nyear= "19"+nyear;

if ((nyear>99) && (nyear<2000))
 nyear+=1900;

document.getElementById("clock_stamp").value = nhours+":"+nmins+":"+nsecn+" "+AorP;
document.getElementById("date_stamp").value = nday+", "+sMonth+" "+ntoday+", "+nyear;

setTimeout('startclock()',1000);

} 

var WindowObjectReference = null;
var sPs = "height=" + (screen.availHeight).toString() + ",width=" + (screen.availWidth).toString() + ",resizable=yes,scrollbars=yes,status=no,menubar=no,toolbar=no,location=no,directories=no,personalbar=no";
function openFFPromotionPopup(sURL)
{
  if(WindowObjectReference == null || WindowObjectReference.closed){
   WindowObjectReference = window.open(sURL, "McWindowName", sPs);
   WindowObjectReference.focus();
   WindowObjectReference.moveTo(0,0);
  }
  else
  {
    if(WindowObjectReference.location == sURL){
        WindowObjectReference.focus();
    }
    else{
        WindowObjectReference.location = sURL;
        WindowObjectReference.focus();
    }
  }
}