function useSIFR()
{
	/* Replacement calls. Please see documentation for more information. */
	if(typeof sIFR == "function")
	{
		// This is the preferred "named argument" syntax
		sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:"/includes/text_wDropShadow.swf", sColor:"#46402c", sLinkColor:"#497574", sBgColor:"#FFFFFF", sHoverColor:"#CCCCCC", nPaddingTop:0, nPaddingBottom:25, sFlashVars:"textalign=right&offsetLeft=-5", sWmode:"transparent"}));
		// This is the older, ordered syntax
		
		
		
	}
};

/*********************************************/

function init() {
	if (whichSection != "") {
			// turn appropriate left nav item on
		{
			var navLinks = document.getElementById("leftNav").getElementsByTagName('a');
			var currentFile = (location.pathname.split("/")[location.pathname.split("/").length-1] == "") ? "index.shtml" : location.pathname.split("/")[location.pathname.split("/").length-1];
			//alert(currentFile)
			
			for (i=0; i<navLinks.length; i++) {			
				//alert(navLinks[i].innerHTML + "..." + whichSection)
				if (navLinks[i].innerHTML.indexOf(whichSection) == 0) {
					//alert("match");
					navLinks[i].className = "navOn";
				}
			}
			
		}
	}
}

/*********************************************/

function showProps(obj,objName) {
   var result = ""
   var count = 0
   for (var i in obj) {
      result += objName + "." + i + " = " + obj[i] + "\n"
      count++
      if (count == 25) {
         alert(result)
         result = ""
         count = 0
      }
   }
   if (count != 0) alert(result)
}
