// JavaScript Document

/*--------------------------------------------------------------------------------------------------

							Sidebar Image Generator - Version 1.0 - 04/06/06

--------------------------------------------------------------------------------------------------*/


var path = "images/sidebar/"	//Path that the images reside in.
var images = new Array();	//Names of the images.  Starts at Sunday, ends on Saturday.
	images[0] = "sidebar0.jpg";
	images[1] = "sidebar1.jpg";
	images[2] = "sidebar2.jpg";
	images[3] = "sidebar3.jpg";
	images[4] = "sidebar4.jpg";
	images[5] = "sidebar5.jpg";
	images[6] = "sidebar6.jpg";
var today = new Date();	//Assigns today's date to the variable 'today'.
var day = today.getDay();	//Assigns the day of the week to the variable 'day'.

function showImage() {
	document.write("<img src='" + path + images[day] + "' alt='BeStrong' />");
}


/*------------------------------------------------------------------------------------------------*/


<!-- Start antiSpam using ROT-13 encryption-->
function fcnz(user) {
location.href = "mailto:" + user + "@bestrong.ca";
}
<!-- End antiSpam-->


/*--------------------------------------------------------------------------------------------------

									Photo Pop-up Window Generator

--------------------------------------------------------------------------------------------------*/


function fnPictureOpen(Target){
	PICwin=window.open(Target,"","width=760,height=600,maximize=yes,scrollbars=yes,resizable=YES")
}

function fnVideoOpen(Target){
	PICwin=window.open(Target,"","width=800,height=600,maximize=yes,scrollbars=yes,resizable=YES")
}
/*------------------------------------------------------------------------------------------------*/