//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================

function goSite(el){
	
	var siteCode=el.options[el.selectedIndex].value;
	var newLoc = "";
	switch (siteCode) {
		case "de":	newLoc="http://www.designplanleuchten.de"; break;
		case "uk":	newLoc="http://www.designplan.co.uk"; break;
		case "us":	newLoc="http://www.designplan.com/";}
	window.location=newLoc;
}
