//<![CDATA[

// function stopError() { return true; } 
// window.onerror = stopError; 

test=new Date(); 
var month=test.getMonth()+1; 
var day=test.getDate(); 
var year=test.getYear(); 
var showdate=day; 
if (day==1 || day==21 || day==31) { 
 showdate = showdate+"st"; } 
 else if (day==2 || day==22) { showdate = showdate+"nd"; } 
 else if (day==3 || day==23) { showdate = showdate+"rd"; } 
 else { showdate = showdate + "th"; } 
if (month==1)        { showdate = showdate+" January"; } 
 else if (month==2)  { showdate = showdate+" February"; } 
 else if (month==3)  { showdate = showdate+" March"; } 
 else if (month==4)  { showdate = showdate+" April"; } 
 else if (month==5)  { showdate = showdate+" May"; } 
 else if (month==6)  { showdate = showdate+" June"; } 
 else if (month==7)  { showdate = showdate+" July"; } 
 else if (month==8)  { showdate = showdate+" August"; } 
 else if (month==9)  { showdate = showdate+" September"; } 
 else if (month==10) { showdate = showdate+" October"; } 
 else if (month==11) { showdate = showdate+" November"; } 
 else { showdate = showdate + " December"; } 
showdate = showdate + " " + year;

// khaki 	#F0E68C
// Tan  	#D2B48C
// Wheat  	#F5DEB3
// SaddleBrown  	#8B4513
// Olive  	#808000
// OliveDrab 	#6B8E23
// DarkOliveGreen  	#556B2F

function openWindow(url, w, h) { 
 var options = "width=" + w + ",height=" + h + ","; 
 options += "resizable=yes,scrollbars=yes,status=no,"; 
 options += "menubar=no,toolbar=no,location=no,directories=no"; 
 var newWin = window.open(url, 'newWin', options); 
 if (window.focus) { newWin.focus(); } 
 self.focus();
} 

function popupWindow(url) {
  options =  'toolbar=no,location=no,directories=no,status=no,menubar=no';
  options += ',scrollbars=yes,resizable=yes,copyhistory=no';
  options += ',width=550,height=550,screenX=150,screenY=100,top=100,left=150';
  window.open(url,'popupWindow',options)
}

var i=0;

function resize() {
  if (navigator.appName == 'Netscape') { i=10; }
  if (document.documentElement && document.documentElement.clientWidth) {
    frameWidth  = document.documentElement.clientWidth;
    frameHeight = document.documentElement.clientHeight;
    window.resizeTo(frameWidth,frameHeight-i);
  } else if (document.body) {
    window.resizeTo(document.body.clientWidth, document.body.clientHeight-i);
  }
  self.focus();
}

//]]>