function setStyle(obj1, obj2){
	var item = document.getElementById(obj1);
	var item_2 = document.getElementById(obj2);

	
	var windowH1 = item.offsetHeight;
	var windowH2 = item_2.offsetHeight;

	if(windowH1 > windowH2)
	{
		item_2.style.height = windowH1+"px";
	}
	else
	{
		item.style.height = windowH2+"px";
	}

}
function submitMaillist(){
	name = document.getElementById('maillist_name').value;
	email = document.getElementById('maillist_email').value;
	window.location='?maillist=add&name='+name+'&email='+email;
	
}
function CheckEnter(evt) {
    var keyCode = document?evt.which:evt.keyCode;
    if (keyCode == 13) {
        return true;
    }
    return false;
}

function checkForm() {
	if (document.getElementById('name').value == ""){
		alert("Vinsamlegast fylliğ inn Nafn"); return; 
	}else if (document.getElementById('email').value == ""){ 
		alert("Vinsamlegast fylliğ inn Netfang"); return; 
	}
	document.forms["ShoppingForm"].submit()
}