function menu_flip(inTable,inRow,inCell,inStatus){ var o=document.getElementById(inTable).rows[inRow].cells[inCell]; if(inStatus==0){o.innerHTML=''} if(inStatus==1){o.innerHTML=''} } function checkNewsLetter(form) { if(!checkMail(form.email.value)) { alert('Vennligst sjekk e-post adresse.'); return false; }else{ return true } } function checkMail(address) { var emailReg = "^[0-9a-zA-Z._-]*[@][0-9a-zA-Z._-]*[.][a-z]{2,4}$"; return new RegExp(emailReg).exec(address); } function printme(){ // alert(document.getElementById('printout').innerHTML); var myWindow; myWindow = window.open('','printout','width=400,height=400,scrollbars=no,resizable=no') myWindow.document.write('
'+document.getElementById('printout').innerHTML+'
') myWindow.document.close() myWindow.focus(); }