// Newcastle Tae Kwon Do: master JS file//


// Open a new window for the pop-up image //

var win = null;

function NewWindow(mypage,myname,w,h,scroll)
    {
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+''
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
    }

//Write the date to the page //

function ShowDate() 
	{
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var Digital=new Date();
var year=Digital.getYear();
if (year < 1000) year+=1900;
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var day=time.getDate();
var date="" + day + " " + lmonth + " " + year;
return date;
	}