// JavaScript Document
function setFontSmall() {
	document.getElementById("navi").style.fontSize = "100%";
	document.getElementById("content").style.fontSize = "120%";
}

function setFontMedium() {
	document.getElementById("navi").style.fontSize = "125%";
	document.getElementById("content").style.fontSize = "130%";
}

function setFontLarge() {
	document.getElementById("navi").style.fontSize = "140%";
	document.getElementById("content").style.fontSize = "160%";
}


function showHTPVid() {
		window.open("htpvideo.html", "video", "height=513,width=600,status=0,toolbar=0,resizable=0,scrollbars=0,menubars=0,location=0,directories=0");
}

//Flash Overrides

function showFlash(url) {
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"691\" height=\"386\">");
	document.write("<param name=\"movie\" value=" + url + " />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write("<param name=\"wmode\" value=\"transparent\" />");
	document.write("<embed src=" + url + " quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"691\" height=\"386\" wmode=\"transparent\"></embed></object>");
}