function show_element(which){
	document.getElementById(which).style.visibility = "visible";
}
function hide_element(which){
	document.getElementById(which).style.visibility = "hidden";
}
function switchDiv(div,modus)  {//modus: hide||show
	e = document.getElementById(div);
	e.style.visibility = "hidden";
	if (e) {
		if(!modus){
			if (e.style.visibility == "hidden") {
				modus="show";
			}else{
				modus="hide";
			}
		}
		if(modus=="show"){
			e.style.visibility = "visible";
			/* e.style.display = "block"; */ 
		}
		if(modus=="hide"){
			e.style.visibility = "hidden";
			/* e.style.display = "none"; */
		}
	}
}
function switchDivLanguage(div,modus)  {//modus: hide||show
	e = document.getElementById(div);
	if (e) {
		if(!modus){
			if (e.style.visibility == "hidden") {
				modus="show";
			}else{
				modus="hide";
			}
		}
		if(modus=="show"){
			e.style.visibility = "visible";
			/* e.style.display = "block"; */ 
		}
		if(modus=="hide"){
			e.style.visibility = "hidden";
			/* e.style.display = "none"; */
		}
	}
}
function setInvisible(div){
	e = document.getElementById(div);
	e.style.visibility = "hidden";
	/* e.style.display = "none"; */
}
function openSubNav(div){
	e = document.getElementById("nav_level_2a");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2b");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2c");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2d");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2e");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2f");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2g");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2h");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2i");
	e.style.visibility = "hidden";
	e = document.getElementById("nav_level_2j");
	e.style.visibility = "hidden";
	if(div){
		e = document.getElementById(div);
		e.style.visibility = "visible";
	}
}
function setInvisible(div){
	e = document.getElementById(div);
	e.style.visibility = "hidden";
	/* e.style.display = "none"; */
}
function switch_img(which,modus){
	if(which){
		obj = eval(which+"_"+modus);
		document.getElementById(which).src = obj.src;
	}
}
function setMainNavigation(which,modus){
	//document.getElementById("nav_1_01").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_01_d.gif";
	//document.getElementById("nav_1_02").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_02_d.gif";
	//document.getElementById("nav_1_03").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_03_d.gif";
	//document.getElementById("nav_1_04").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_04_d.gif";
	//document.getElementById("nav_1_05").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_05_d.gif";
	//document.getElementById("nav_1_06").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_06_d.gif";
	//document.getElementById("nav_1_07").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_07_d.gif";
	//document.getElementById("nav_1_08").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_08_d.gif";
	//document.getElementById("nav_1_09").src = "http://a248.e.akamai.net/7/248/1229/v187/www.smartusa.com/img/Navigation-level1_09_d.gif";
	//document.getElementById("nav_1_10").src = "../resources/images/Navigation-level1_10_d.gif";
	switch_img(which,modus);
}
function getHeight(){
}

function DHTML_init() {
 if (window.opera) {
     OP = 1;
 }
 if(document.getElementById) {
   DHTML = 1;
   DOM = 1;
 }
 if(document.all && !OP) {
   DHTML = 1;
   MS = 1;
 }
if(window.netscape && window.screen && !DOM && !OP) {
   DHTML = 1;
   NS = 1;
 }
}


function getTopCountrysite() {
	var DHTML = 0, DOM = 0, MS = 0, NS = 0, OP = 0;
	f = document.getElementById("XXL_media_countrysite_hp_001");
	DHTML_init();
	if(MS){
		f.style.top = "337px";
	}else{
		f.style.top = "347px";
	}
}

function popup(strUrl, strTitle, intWidth, intHeight){
	if(!intWidth){
		var intWidth;
		intWidth = "642";
	}
	if(!intHeight){
		var intHeight;
		intHeight = "583";
	}
	var settings;
	settings="width="+ intWidth +",height="+ intHeight +",top=150,left=200,directories=no,toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,resizable=no,dependent=no,fullscreen=no";
	Popup = window.open(strUrl, strTitle, settings);
	Popup.focus();
}