function iwb_val(frm) { if (!frm.domain.value) { alert("Enter your domain name"); frm.domain.focus(); return false; } return true; }
Powered by iWEBTOOL
Keyword Density Checker
Enter website address to analyze:
http://
Â
Â
(eg. iwebtool.com)
Â
function validate(theform) { if (theform.domain.value == "") { alert("Please provide a domain name."); theform.domain.focus(); return false; } return true; }