function goToJumpLink(theJumpLink){
 	document.location = '#'+theJumpLink+'';
 }
 
function viewToPrint(thePagesID){ document.location='/view_to_print/index.php?pages_ID='+thePagesID; }

function printThisPage(){ window.print(); }

function insertQuickTimeVideo(thePath, theWidth, theHeight){
	theHeight=parseInt(theHeight)+15;
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="'+theWidth+'" height="'+theHeight+'">');
	document.write('	<param name="src" value="'+thePath+'">');
	document.write('	<param name="autoplay" value="false">');
	document.write('	<param name="controller" value="true">');
	document.write('	<param name="type" value="video/quicktime" height="256" width="320">');
	document.write('	<embed src="'+thePath+'" width="'+theWidth+'" height="'+theHeight+'" autoplay="false" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">');
	document.write('</object>');
}