function imageOn(i) {
	if (document.images) {
		document.images["btn" + i].src = onImgArray[i].src
	}
}
function imageOff(i) {
	if (document.images) {
		document.images["btn" + i].src = offImgArray[i].src
	}
}

function displayWindow(theURL,winName,width,height) {
	newWindow = window.open(theURL,winName,"resizable=no,toolbar=no,location=no,width=" + width + ",height=" + height + ",directories=no,status=no,scroll=no,scrollbars=no,menubar=no,left=120,top=120");
	newWindow.focus();
	return;
}

function embedQuicktime(movieAddress, width, height) {
    //remember to add 16 vertical pixels for the nav bar
	document.writeln('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0" width="'+width+'" height="'+height+'"><param name="controller" value="TRUE"><param name="type" value="video/quicktime"><param name="autoplay" value="true"><param name="target" value="myself"><param name="src" value="'+movieAddress+'"><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html"><embed src="'+movieAddress+'" width="'+width+'" height="'+height+'" autostart="true" CONTROLLER="TRUE" TARGET="myself" type="video/quicktime" BGCOLOR="#000000" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/indext.html"></EMBED></object>');
}

function embedWindowsMedia(movieAddress, width, height) {
    //remember to add 46 vertical pixels for the nav bar
    document.writeln('<OBJECT ID="MediaPlayer" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"  standby="Loading Microsoft Windows Media Player components..." TYPE="application/x-oleobject" width="'+width+'" height="'+height+'"><PARAM NAME="FileName" VALUE="'+movieAddress+'" width="'+width+'" height="'+height+'"><PARAM NAME="autostart" VALUE="true"><EMBED TYPE="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows95/downloads/contents/wurecommended/s_wufeatured/mediaplayer/default.asp" SRC="'+movieAddress+'" Name=MediaPlayer ShowControls=1 ShowDisplay=0 ShowStatusBar=0 width='+width+' height='+height+' AUTOPLAY="true"></EMBED></OBJECT>');
}



