function validate(form) { var agree=true; if (form.oemail.value=='' || form.oemail.value=='> Enter your email') { alert('Please enter your email address.'); agree=false; } if (agree && form.optin_subscribe[1].checked) { agree=confirm('Are you sure you want to unsubscribe?'); } if (agree) { window.open('','optin', 'menubar=yes,resizable=yes,scrollbars=yes,status=no, width=300,height=200, top=10,left=10, screenX=10,screenY=10'); } return agree; } function hilite (cid, tog) { if (tog) { var pnc = document.getElementById("pnc" + cid); var nc = document.getElementById("nc" + cid); pnc.style.backgroundColor = "#000000"; nc.style.backgroundColor = "#670A00"; nc.style.color = "#ffffff"; } else { var pnc = document.getElementById("pnc" + cid); var nc = document.getElementById("nc" + cid); pnc.style.backgroundColor = "#670A00"; nc.style.backgroundColor = "#DDD3A5"; nc.style.color = "#670A00"; } }