// JavaScript Document

function chgLang(id){
	switch(id){
		case "au": window.location.href="http://www.velumount.com.au"; break;
		case "ch": window.location.href="http://www.velumount.ch"; break;
		case "de": window.location.href="http://www.velumount.de"; break;
		case "at": window.location.href="http://www.velumount.at"; break;
		case "nl": window.location.href="http://www.velumount.nl"; break;
		case "in": window.location.href="http://www.velumount.in"; break;
	}
}

function gotolink(url){
	window.location.href=url;
}

