function jumpurl()
{
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
var langselect = document.getElementById("cmbLang").selectedIndex;
if (langselect == "0") 
  {
	  window.location.href = "http://giantcode.com/" + sPage;
  }
  else {
	  window.location.href = "http://giantcode.com/de/" + sPage;
  }
}
