function go(loc){
	return window.location=loc;
}

function checkMaillist(){

	var email = document.getElementById('maillist_email');

	var error = "";

	if(email.value == ''){
		error += "Žaš veršur aš vera netfang til aš skrį\n";
	}

	if(email.value.indexOf('@') == -1){
		error += "Žaš veršur aš vera netfang (žitt-netfang@len.is)\n";
	}

	if(error != ""){
		alert(error);
		return false;
	}else{
		return true;
	}

}

function setStyle()
{
	var item = document.getElementById('MainDiv')
	//var item2 = document.getElementById('WebWrapper');



	/*
	if (navigator.appName=="Netscape")
	{
	  windowH_2 = window.innerHeight;
	  windowH_1 = window.innerHeight + 80;
	}
 	if (navigator.appName.indexOf("Microsoft")!=-1)
 	{
	  windowH_2 = document.body.offsetHeight;
	  windowH_1 = document.body.offsetHeight;
 	}
 	*/

	var windowH = document.getElementById('Content').height;

	//alert(windowH);

	item.style.height = windowH+"px";
	//item2.style.height = windowH_2+"px";

}




