var currentWin;

// JavaScript Document - uniof.net
today = new Date
weekDayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
monthName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
function printDate()
{
document.write("<class=\"DateFormat\">" + weekDayName[today.getDay()]+ " " + today.getDate()+  " " + monthName[today.getMonth()] + " " + today.getFullYear()+ "</b>")
}
// insert <SCRIPT LANGUAGE="JAVASCRIPT">printDate()<SCRIPT> into your page to see the date and close the script tag properly
// class=\"DateFormat\"> needs a definition if it is to do anything!



function showDialog(lclUrl) {
	currentWin=window.open(lclUrl, 'wndNunnDia','width=300,height=200,top=200,left=250');
	currentWin.focus();

}

function showSeeMore(lclUrl) {
	currentWin=window.open(lclUrl, 'wndNunnPop','scrollbars,width=450,height=550,top=20,left=20');
	currentWin.focus();

}

        

