<!--

// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// 
// If want to use this code, feel free to do so, but please leave this message intact.
//
// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// --- version date: 02/04/03 ---------------------------------------------------------
/*

If you use a DOCTYPE that puts Explorer 6 in standards compliant mode, some properties 
of document.body are reassigned to document.documentElement. In Explorer 5 the 
properties still belong to document.body. Checking if the documentElement exists is not 
enough, since it exists in all W3C DOM compatible browsers, so we also have to see if 
it has the property we are trying to access.
For more info on this topic visit http://www.xs4all.nl/~ppk/js/doctypes.html

*/
var ScrollWin = {
	w3c : document.getElementById,
	iex : document.all,
	scrollLoop : false, 
	scrollInterval : null, // setInterval id
	currentBlock : null,   // object reference
	getWindowHeight : function(){
		if(this.iex) return (document.documentElement.clientHeight) ? document.documentElement.clientHeight : document.body.clientHeight;
		else return window.innerHeight;
	},
	getScrollLeft : function(){
		if(this.iex) return (document.documentElement.scrollLeft) ? document.documentElement.scrollLeft : document.body.scrollLeft;
		else return window.pageXOffset;
	},
	getScrollTop : function(){
		if(this.iex) return (document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop;
		else return window.pageYOffset;
	},
	getElementYpos : function(el){
		var y = 0;
		while(el.offsetParent){
			y += el.offsetTop
			el = el.offsetParent;
		}
		return y;
	},
	scroll : function(num){
		if(!this.w3c){
			location.href = "#"+this.anchorName+num;
			return;
		}
		if(this.scrollLoop){
			clearInterval(this.scrollInterval);
			this.scrollLoop = false;
			this.scrollInterval = null;
		}
		if(this.currentBlock != null) this.currentBlock.className = this.offClassName;
		this.currentBlock = document.getElementById(this.blockName+num);
		this.currentBlock.className = this.onClassName;
		var doc = document.getElementById(this.containerName);
		var documentHeight = this.getElementYpos(doc) + doc.offsetHeight;
		var windowHeight = this.getWindowHeight();
		var ypos = this.getElementYpos(this.currentBlock);
		if(ypos > documentHeight - windowHeight) ypos = documentHeight - windowHeight;
		this.scrollTo(0,ypos);
	},
	scrollTo : function(x,y){
		if(this.scrollLoop){
			var left = this.getScrollLeft();
			var top = this.getScrollTop();
			if(Math.abs(left-x) <= 1 && Math.abs(top-y) <= 1){
				window.scrollTo(x,y);
				clearInterval(this.scrollInterval);
				this.scrollLoop = false;
				this.scrollInterval = null;
			}else{
				window.scrollTo(left+(x-left)/2, top+(y-top)/2);
			}
		}else{
			this.scrollInterval = setInterval("ScrollWin.scrollTo("+x+","+y+")",100);
			this.scrollLoop = true;
		}
	}
};

// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/*
using the following line, IE/PC returns an incorrect number when getting the document height.
var document_height = document.all ? document.body.offsetHeight : window.document.height;
To fix this problem, a container div is wrapped around the content so the correct height 
can be determined.
*/

// Edit these variables

ScrollWin.containerName = "container"; // The id name of the div containing the content
ScrollWin.anchorName    = "anchor";    // The alpha portion of the anchor names
ScrollWin.blockName     = "block";     // The alpha portion of the content blocks
ScrollWin.onClassName   = "active";    // The CSS class name for the 'on' state
ScrollWin.offClassName  = "visited";   // The CSS class name for the 'off' state

// ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

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

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->

// Flash Movie embeds

function homeleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/home/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/home/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function homeright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/home/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/home/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function homecenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/home/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/home/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function newsleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/news/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/news/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function newsright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/news/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/news/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function newscenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/news/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/news/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function sandleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/sandclnc/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/sandclnc/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function sandright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/sandclnc/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/sandclnc/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function sandcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/sandclnc/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/sandclnc/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function msandleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/msanders/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/msanders/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function msandright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/msanders/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/msanders/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function msandcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/msanders/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/msanders/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function patientleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/patientinfo/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/patientinfo/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function patientright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/patientinfo/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/patientinfo/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function patientcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/patientinfo/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/patientinfo/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function arthosurgleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/arthosurg/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/arthosurg/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function arthosurgright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/arthosurg/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/arthosurg/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function arthosurgcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/arthosurg/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/arthosurg/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function reconprgmleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/reconprgm/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/reconprgm/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function reconprgmright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/reconprgm/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/reconprgm/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function reconprgmcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/reconprgm/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/reconprgm/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function aclrehableft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/aclrehab/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/aclrehab/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function aclrehabright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/aclrehab/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/aclrehab/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function aclrehabcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/aclrehab/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/aclrehab/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function comproblmleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/comproblm/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/comproblm/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function comproblmright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/comproblm/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/comproblm/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function comproblmcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/comproblm/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/comproblm/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function perfitrnrsleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/perfitrnrs/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/perfitrnrs/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function perfitrnrsright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/perfitrnrs/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/perfitrnrs/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function perfitrnrscenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/perfitrnrs/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/perfitrnrs/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function testimonleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/testimon/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/testimon/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function testimonright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/testimon/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/testimon/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function testimoncenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/testimon/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/testimon/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function comproblmleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/comproblm/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/comproblm/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function comproblmright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/comproblm/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/comproblm/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function comproblmcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/comproblm/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/comproblm/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function motoxinjleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/motoxinj/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/motoxinj/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function motoxinjright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/motoxinj/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/motoxinj/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function motoxinjcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/motoxinj/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/motoxinj/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function occupainjleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/occupainj/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/occupainj/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function occupainjright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/occupainj/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/occupainj/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function occupainjcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/occupainj/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/occupainj/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function faqleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/faq/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/faq/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function faqright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/faq/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/faq/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function faqcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/faq/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/faq/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function contactleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/contact/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/contact/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function contactright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/contact/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/contact/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function contactcenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/contact/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/contact/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function helthfitnsleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/helthfitns/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/helthfitns/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function helthfitnsright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/helthfitns/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/helthfitns/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function helthfitnscenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/helthfitns/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/helthfitns/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function linksleft_swf() {
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="36" height="239">');
document.write('<param name="movie" value="mov/links/left.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/links/left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239" bgcolor="FF9900">');
document.write('</embed>');
document.write('</object>');
}

function linksright_swf() {
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="36" height="239">');
document.write('<param name="movie" value="mov/links/right.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/links/right.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="36" height="239">');
document.write('</embed>');
document.write('</object>');
}

function linkscenter_swf() {
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="454" height="239">');
document.write('<param name="movie" value="mov/links/center.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/links/center.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="454" height="239">');
document.write('</embed>');
document.write('</object>');
}

function headline_swf() {
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="285" height="265">');
document.write('<param name="movie" value="mov/news_headlines/headlines.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="mov/news_headlines/headlines.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="285" height="265">');
document.write('</embed>');
document.write('</object>');
}

function rehabvid_swf() {
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="434" height="187">');
document.write('<param name="movie" value="swf/rehab/rehab_montage2.swf">');
document.write('<param name="quality" value="high">');
document.write('<embed src="swf/rehab/rehab_montage2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="434" height="187">');
document.write('</embed>');
document.write('</object>');
}

//-->
