<!--
// JavaScript Document
function shut_down(){
	window.close();
}
function go_back(){
	history.go(-1);
}

function print_this(){
if(window.print){
	this.print();
} else {
	alert ("Your browser does not allow the print function. To print this page, please click the print icon at the top of your browser.");
}
}

//for writing email address - to prevent spam, to a degree
function writemail(alias,thestyle, theurl){
    document.write ("<A HREF='mailto:" + alias + "@" + theurl + "' class='" + thestyle + "'>" + alias + "@" + theurl + "</A>");
}

// function below is used for the pop up windows for the video clips
function Center_Window(theURL,winName,features, winwidth, winheight) { //v2.0
	thewidth = screen.width/2;
	theheight = screen.height/2;
	thetop = theheight - (winheight/2);
	theleft = thewidth - (winwidth/2);
	winfeat = 'top='+thetop+',left='+theleft+','+features;
  window.open(theURL,winName,winfeat);
}
//-->