// JavaScript Document

// date

function GetMonth(intMonth){
    var MonthArray = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September","October", "November", "December") 
	return MonthArray[intMonth] 	  	  
	}

function getDateStr(){
	var today = new Date()
	var year = today.getYear()
	if(year<1000) year+=1900
	var todayStr = GetMonth(today.getMonth()) + " " + today.getDate()
	todayStr += ", " + year
	return todayStr
	}
	
// E-mail

function mailpage(){  
	mail_str = "mailto:?subject=Website: " + document.title;
  	mail_str += "&body= Please visit: " + location.href;
  	location.href = mail_str;
	}

// Print page

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
	}

// noscript

document.write('<style>.noscript { display:none }</style>'); 


