// ValidateTipsMail - used by /content/mer/tipsa.page function ValidateTipsMail(form) { var IsAnError = false; var message = "Följande fält måste fyllas i:\n\n"; if(form.my_name.value == "") { IsAnError = true; message = message + "- Ditt namn\n"; } if(form.my_mail.value == "") { IsAnError = true; message = message + "- Din epostadress\n"; } if(form.friend_mail.value == "") { IsAnError = true; message = message + "- Dina vänners epostadresser\n"; } if(form.friend_comment.value == "") { IsAnError = true; message = message + "- Eget meddelande\n"; } if(IsAnError) { alert(message); return false; } } function MM_openBrWindow(theURL,winName,features) { //v2.0 win = window.open(theURL,winName,features); win.focus(); } function Framerizer() { // Javascript to make sure we're loaded within the frameset /*if (top.location.pathname != "/index.htm" && top.location.pathname != "/") { top.location.href="index.htm" + top.location.search; }*/ }