function formatFilesize(s){v=s/1024;return v.toFixed(2);}function checkMail(formtype){switch(formtype){case "upload":if(document.uploadProf.uEmail.value==""){return true;}else{return emailCheck(document.uploadProf.uEmail.value);}break;case "reply":if(document.commentReply.rEmail.value==""){return true;}else{return emailCheck(document.commentReply.rEmail.value);}break;case "comment":if(document.userComment.cEmail.value==""){return true;}else{return emailCheck(document.userComment.cEmail.value);}break;case "newsletter":if(document.nlsubscription.nEmail.value==""){return true;}else{return emailCheck(document.nlsubscription.nEmail.value);}break;default:return true;}}function removeWho(who){if(typeof who=='string') who=document.getElementById(who);if(who && who.parentNode)who.parentNode.removeChild(who);}