function LinkTo(url){
    //alert('LinkTo started...');
    location.href=url;
}
/*
function regTab(nr){
	switch (nr){
		case 1:
			location.href = "product_service.htm";
			break;
		case 2:
			location.href = "shipping.htm";
			break;
		case 3:
			location.href = "grid01.htm";
			break;
		case 4:
			location.href = "online_services_de.htm";
			break;
		default:
			alert(nr);
			break;
	}
	return true;
}
*/
function hiliteTab(objId,mode){
	var hObj;
	if(document.getElementById){
		hObj = document.getElementById(objId);
		if(typeof hObj=="object"){
			if(mode==1){
				hObj.style.color = "#000000";
			}else{
				hObj.style.color = "#666666";
			}
		}
	}
}
function changeImg(iName,iMode){
	var iSrc = document.images[iName].src;
	if(iMode==1){
		iSrc = iSrc.replace("_lo.","_hi.");
	}else{
		iSrc = iSrc.replace("_hi.","_lo.");
	}
	document.images[iName].src = iSrc;
}
function selInput(obj,defaultText){
	if(obj.value==defaultText){
		obj.value="";
		obj.style.color = "#000000";
	}
}
function blurInput(obj,defaultText){
	if(obj.value==""){
		obj.value=defaultText;
		obj.style.color = "#999999";
	}
}

function set_cookie_language(name, value, expires){
    document.cookie = name + '=' + escape(value) + (( !expires ) ? "" : ('; expires=' + expires.toUTCString())) + '; path=/';
} 