<!--
// JavaScript Document
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){
    document.write ("<A HREF='mailto:" + alias + "@bigbonesbash.com' class='" + thestyle + "'>" + alias + "@bigbonesbash.com</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);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
    
function shutdown(){
	window.close();
}

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

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

function subj_email(alias,url,lnktext, subject){
    document.write ("<A HREF='mailto:" + alias + "@" + url + "?subject=" + subject + "' target='_blank'>" + lnktext + "</A>");
}
//-->