function popupWin(sFile) {
   // Open a new window and dispaly content for picture contribution
   var popupWin = window.open(sFile,"popup","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width=400,height=400");
}

	 function checkform_01() {
	 name = document.forms[0].name.value;
	 mail = document.forms[0].mail.value;
	 phone = document.forms[0].phone.value;

	 if (name.length == 0) {alert('Du måste ange ett namn!'); document.forms[0].name.focus(); return false;}
	 else if (mail.length == 0) {alert('E-post adress saknas!'); document.forms[0].mail.focus(); return false;}
	 else if (phone.length == 0) {alert('Du måste ange ett telefonnummer!'); document.forms[0].phone.focus(); return false;}
	 else {return true;}
  }

function safemail(name, domain, display) {
displayed=(typeof(display)=="undefined") ? name+"@"+domain : display
document.write('<a href=mailto:' + name + '@' + domain + '>' + displayed + '</a>');
}

