try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}


function featureHideShow(showFeature,featureCount){
	var featureID
	var tempFeature;
	for (i = 1;i <= featureCount;i++)
	{
	   featureID = "feature" + i
	   if (featureID == showFeature)
	   {
		tmpFeature = document.getElementById(showFeature)
		tmpFeature.style.display = "";
	   }else{
		tmpFeature = document.getElementById("feature" + i)
		tmpFeature.style.display = "none";
	   }
	}	
}


function Refresh(type){
	var URL = "";
	if (type == 1){
		URL = document.pageForm.LanguageSelection.options[document.pageForm.LanguageSelection.selectedIndex].value; 
	}else{
		URL = document.pageForm.countrySelection.options[document.pageForm.countrySelection.selectedIndex].value; 
	}	
	window.location.href = URL;
}




sfHover1 = function() {
	try{
	var sfEls = document.getElementById("section1").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover1";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover1\\b"), "");
		}
	}
	}catch(err) {}
}
if (window.attachEvent) window.attachEvent("onload", sfHover1);


sfHover2 = function() {
	try{
	var sfEls = document.getElementById("section2").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover2";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover2\\b"), "");
		}
	}
	}catch(err) {}
}
if (window.attachEvent) window.attachEvent("onload", sfHover2);


sfHover3 = function() {
	try{
	var sfEls = document.getElementById("section3").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover3";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover3\\b"), "");
		}
	}
	}catch(err) {}
}
if (window.attachEvent) window.attachEvent("onload", sfHover3);


sfHover4 = function() {
	try{
	var sfEls = document.getElementById("section4").getElementsByTagName("LI");
	
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover4";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover4\\b"), "");
			}
		}
	}catch(err) {}
}
if (window.attachEvent) window.attachEvent("onload", sfHover4);







