/*********************************************************************
      
   Link the library into your page with the following tag
   set in the HEAD portion of your document:
   
   <script language="javascript" src="Include/html.js"></script>

      
***********************************************************************/

var newWindow = null;
			document.onclick=
function() {
	if(newWindow && !newWindow.closed){
   			 newWindow.close();}
}

function openWindow(theURL,winName,features) { 
	if(newWindow && !newWindow.closed){
	 newWindow.close();}
		newWindow=window.open(theURL,winName,features);
}

function closeWindow() 
{
	if(newWindow && !newWindow.closed)
		newWindow.close(); 
}





today = new Date



weekDayName = new Array ("Sun ","Mon ","Tue ","Wed ","Thu ","Fri ","Sat ")



monthName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")



function printDate()

{

document.write("<b>" + weekDayName[today.getDay()]+ " , " + monthName[today.getMonth()] + " " + today.getDate()+ "</b>")

}

function printYear()

{
var now = new Date(); 
thisYear = now.getFullYear(); 


document.write(thisYear);

}


