
///////////////////////////////// REDIRECT FUNCTION ACCORDING TO LANGUAGE OF PAGE

function load_home(){

	if (document.getElementsByTagName('html')[0].lang.indexOf("en") > -1) {
  		top.location.href='http://www.s4m.com/site/index.php?id=1&L=1';
	} else if (document.getElementsByTagName('html')[0].lang.indexOf("de") > -1) {
  		top.location.href='http://www.s4m.com/site/index.php?id=1';
	}

}