	function image_click(img) {
	
		document.getElementById("test").value = img;
		document.menu.submit();
	//var url= "http://"+window.location.hostname+"/projekti/MastsOnline1900/var/www/?page="+img;
	//return window.location.assign(url+img);
	//window.location = "http://www.google.com/"
	//var url=window.location;
	//window.location=url+"index.php?page="+img;
	//alert(window.location+"WHAT THE F***!!!"+img);
	}
	function eng_language_click(lang) {
		document.getElementById("test2").value = lang;
		document.eng_DEU.submit();
	}
	function ger_language_click(lang) {
		document.getElementById("test2").value = lang;
		document.ger_ENG.submit();
	}
	function fra_language_click(lang) {
		document.getElementById("test2").value = lang;
		document.fra_ENG.submit();
	}
	function small_gallery_click() {
		document.getElementById("test4").value = "1";
		document.home_gallery.submit();
	}
	function login_click(id) {
		document.getElementById("test5").value = id;
		document.login.submit();
	}
	function logoutfunction() {
		document.getElementById("logout").value="1";
		document.logout.submit();
	}
	function submitenter(e,id)
	{
		var keycode;
		if (window.event) keycode = window.event.keyCode;
		else if (e) keycode = e.which;
		else return true;

		if (keycode == 13)
		   {
		   document.getElementById("test5").value = id;
		   document.login.submit();
		   return false;
		   }
		else
		   return true;
	}


