<!--
function Browser() {
  var agent = navigator.userAgent.toLowerCase();
  
  this.major = parseInt(navigator.appVersion);
  this.minor = parseFloat(navigator.appVersion);

  this.nn    = ((agent.indexOf('mozilla') != -1) && ((agent.indexOf('spoofer') == -1) && (agent.indexOf('compatible') == -1)));
  this.nn2   = (this.nn && (this.major == 2));
  this.nn3   = (this.nn && (this.major == 3));
  this.nn4   = (this.nn && (this.major == 4));
  this.nn4up = (this.nn && (this.major >= 4));
  this.nn5   = (this.nn && (this.major == 5));
  this.nn6   = (this.nn && (this.major == 6));

  this.ie    = (agent.indexOf("msie") != -1);
  this.ie3   = (this.ie && (this.major == 2));
  this.ie4   = (this.ie && (this.major == 4));
  this.ie4up = (this.ie && (this.major >= 4));
  this.ie5   = (this.ie && (this.major == 5));

  this.opera = (agent.indexOf("opera") != -1);

  this.min = (this.nn4up || this.ie4up);

  this.getWidth = Browser_getWidth;
  this.getHeight = Browser_getHeight;
}

var browser = new Browser();

function Browser_getWidth() {
  return (this.nn4up) ? (window.innerWidth - 16) : (document.body.offsetWidth - 20);
}

function Browser_getHeight() {
  return (this.nn4up) ? window.innerHeight : document.body.offsetHeight;
}

function Platform() {
  var agent = navigator.userAgent.toLowerCase();
  if (browser.nn2 || browser.ie3)
    this.js = 1.0;
  else if (browser.nn3 || browser.opera)
    this.js = 1.1;
  else if (browser.nn4 || browser.ie4)
    this.js = 1.2;
  else if ((browser.nn && (this.minor > 4.05)) || (browser.ie && (this.major > 4))) 
    this.js = 1.2;
  else
    this.js = 0.0;

}
//-->

  

<!--
var rollover3 = new Rollover3();
			
 window.defaultStatus = "Dr. T.J. McKay & Associates - SPINEGUYS.com";

function Rollover3() {
  this.images = new Array();
  
  this.rollOver = Rollover3_rollOver;
  this.rollOff = Rollover3_rollOff;
}

function Rollover3_rollOver(name, image) {
  if ((browser.nn3) || (browser.nn4up) || (browser.ie4up)) {
    if (this.images[name] == null)
      this.images[name] = document[name].src;
    document[name].src = image;
  }
}

function Rollover3_rollOff(name) {
  if ((browser.nn3) || (browser.nn4up) || (browser.ie4up)) {
    document[name].src = this.images[name];
    this.images[name] = null;
  }
}
//--> 
  
<!--
			
			function popUpSurvey(name){
	  			newWindow = window.open(name, 'newWindow', ',resizable,location,toolbar,scrollbars,height=440,width=650');
			}
		//-->
		
		
		<!--
			
			function popUpHours(name){
	  			newWindow = window.open(name, 'newWindow', 'height=320,width=340');
			}
		//-->
		
			<!--
			
			function popUpGift(name){
	  			newWindow = window.open(name, 'newWindow', 'height=320,width=340');
			}
		//-->

<!--
			
			function popUpMap(name){
	  			newWindow = window.open(name, 'newWindow', ',resizable,height=470,width=660');
			}
		//-->
		
		
		
<!-- 
		window.defaultStatus = "Dr. T.J. McKay & Associates - SPINEGUYS.com";
        function popUpexitAcrobat(name) {
                newWindow = window.open(name, 'newWindow', 'scrollbars=yes,toolbar=yes,location=yes,resizable=yes,height=520,width=680');                       
} 
// End hiding script from old  browsers -->		 
	
<!--

/****************************************************
     Author: Eric King
     Url: http://redrival.com/eak/index.shtml
     This script is free to use as long as this info is left in
     Featured on Dynamic Drive script library (http://www.dynamicdrive.com)
****************************************************/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=yes,menubar=yes,toolbar=yes,resizable=yes';
win=window.open(mypage,myname,settings);}
// -->






<!-- Begin
function formHandler(form) {
var windowprops = "height=260,width=316,location=no,"
+ "scrollbars=yes,menubars=no,toolbars=no,resizable=no";

var URL = form.site.options[form.site.selectedIndex].value;
popup = window.open(URL,"MenuPopup",windowprops);
}
// End -->




