function mouseOut(dreptunghi) { dreptunghi.style.background = 'url(http://veralterm.ro/veralterm/image_site/buton_neselectat.jpg)'; } function mouseOver(dreptunghi) { dreptunghi.style.background = 'url(http://veralterm.ro/veralterm/image_site/buton_selectat.jpg)'; } function mouseOutDublu(dreptunghi) { dreptunghi.style.background = 'url(http://veralterm.ro/veralterm/image_site/buton_dublu_neselectat.gif)'; } function mouseOverDublu(dreptunghi) { dreptunghi.style.background = 'url(http://veralterm.ro/veralterm/image_site/buton_dublu_selectat.gif)'; } function validate(){ if ( ( document.emailForm.text.value == "" ) || ( document.emailForm.email.value.search("@") == -1 ) || ( document.emailForm.email.value.search("[.*]" ) == -1 ) ) { alert( "Asigurati-va ca formularul e complet si valid." ); } else if ( ( document.emailForm.email.value.search(";") != -1 ) || ( document.emailForm.email.value.search(",") != -1 ) || ( document.emailForm.email.value.search(" ") != -1 ) ) { alert( "Nu poti introduce decat o adresa de email" ); } else { document.emailForm.submit(); } }