window.onload = function(){
	if(gup('L') == 1){
		$("kongressLink").href = 'http://www.true-sale-international.de/fileadmin/microsites/tsi_microsite_2007/eng/microsite/index.html';
	}
	else{
		$("kongressLink").href = 'http://www.true-sale-international.de/fileadmin/microsites/tsi_microsite_2007/DEU/index.html';	
	}
}

function $(id){
	return document.getElementById(id);	
}

function gup(name){
	name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
	var regexS = "[\\?&]"+name+"=([^&#]*)";
	var regex = new RegExp( regexS );
	var results = regex.exec( window.location.href );
	if(results == null)
		return "";
	else
		return results[1];
}