// Determine if it is IE and Version
		msieIndex = navigator.appVersion.indexOf("MSIE") + 5;
		index = navigator.appVersion.substr(msieIndex,3);
		index = parseFloat (index);
		if ((navigator.appName == "Microsoft Internet Explorer") && (index < 6 ) && navigator.platform == "Win32" ) {
			document.write("<link rel=\"stylesheet\" href=\"../jscript/ie4_5.css\" type=\"text/css\">");
		 	//alert ("you are IE 5.5 and DOWN on windows, you have the body td bug, and everyone in the world has you. You get Percentages!" + index);
		 } else if ((navigator.appName == "Microsoft Internet Explorer") && (index >= 6 ) && navigator.platform == "Win32" ) {
		 	document.write("<link rel=\"stylesheet\" href=\"../jscript/ie6_up.css\" type=\"text/css\">");
		 	// alert ("you are IE 6 and UP on windows, you are in Standards Mode DTD and everyone in the world has you. You get Percentages with EM's!" + index);
		 } else if (document.layers) {
			document.write("<link rel=\"stylesheet\" href=\"../jscript/nn_4.css\" type=\"text/css\">");
			//alert ("you are Netscape 4 - you get points!" + index);
		 } else {
		 	document.write("<link rel=\"stylesheet\" href=\"../jscript/dom.css\" type=\"text/css\">");
		 	//alert ("you are DOM or Mac, or Netscape 4 or up or some other thing I dont know - you get pixels!" + index);
		 }
		document.write("<link rel=\"stylesheet\" href=\"../jscript/styles.css\" type=\"text/css\">"); 


/*Print Click*/
function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}


/*Swaps Metric and inches table*/
function swap() {
var metric =  document.getElementById("metric");
var inches = document.getElementById("inches");

var link = document.getElementById("changeLink");
 
 if  ( inches.style.display == "block") {
 
			inches.style.display = "none";
			metric.style.display = "block";
			link.firstChild.nodeValue = "Show Measurements in Inches"
		
 } else if ( document.getElementById("metric").style.display == "block"){
 
			metric.style.display = "none";
			inches.style.display = "block";
			link.firstChild.nodeValue = "Show Measurements in Metric"
 }
 }

/*Jump Menus*/
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

