//<![CDATA[
/* Replacement calls. Please see documentation for more information. */

if(typeof sIFR == "function"){

// This is the preferred "named argument" syntax
// Available syntax: , nPaddingTop:0, nPaddingBottom:0, sFlashVars:"textalign=left&offsetTop=0", sWmode: "transparent", sLinkColor:"#000000"
	sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:"/flash/industrial.swf", sColor:"#000825", sFlashVars:"textalign=left&offsetLeft=3", sBgColor:"#EEAF30", sWmode: "transparent"}));
	sIFR.replaceElement(named({sSelector:".ht_white", sFlashSrc:"/flash/industrial.swf", sColor:"#ffffff", sBgColor:"#EEAF30", sWmode: "transparent"}));
	sIFR.replaceElement(named({sSelector:".h1_smaller", sFlashSrc:"/flash/industrial.swf", sColor:"#000825", sBgColor:"#EEAF30", sWmode: "transparent"}));


	//sIFR.replaceElement(named({sSelector:"h2", sFlashSrc:"/flash/sifr/tradegothic.swf", sColor:"#000000", sLinkColor:"#ff9900", sBgColor:"#ffffff", sHoverColor:"#CCCCCC"}));

	//sIFR.replaceElement(named({sSelector:"h3", sFlashSrc:"/flash/sifr/vandenkeere.swf", sColor:"#000000", sBgColor:"#999999"}));
	//sIFR.replaceElement(named({sSelector:"h3.sidebox", sFlashSrc:"/flash/sifr/vandenkeere.swf", sColor:"#ff9900", sBgColor:"#000000"}));
	//sIFR.replaceElement(named({sSelector:"LI.menu1", sFlashSrc:"/flash/sifr/vandenkeere.swf", sColor:"#ff9900", sLinkColor:"#ff9900", sHoverColor:"#CCCCCC"}));
	//sIFR.replaceElement(named({sSelector:"LI.menu2", sFlashSrc:"/flash/sifr/vandenkeere.swf", sColor:"#ff0000", sLinkColor:"#ff0000", sHoverColor:"#CCCCCC"}));

};

//]]>




function showLayer(strLayerID) {
	var oLayer = document.getElementById(strLayerID)
	if(oLayer){
		oLayer.style.display = 'block';
	}
}

function hideLayer(strLayerID) {
	var oLayer = document.getElementById(strLayerID)
	if(oLayer){
		oLayer.style.display = 'none';
	}
}

function chooseLayerAction(strLayerID) {
	var oLayer = document.getElementById(strLayerID)
	if(oLayer){
		if (oLayer.style.display == 'none' || oLayer.style.display == '') {
			oLayer.style.display = 'block';
		} else {
			oLayer.style.display = 'none';
		}
	}
}