// JavaScript Document
function validateLinkForm(){
var why = "";
var show = false;
	if(document.linkForm.linkMasterNAME.value.length<3){
		why+="Please enter a valid Name minimum of 3\n"; 
		show = true;
		document.linkForm.linkMasterNAME.focus();
	}
	if(isEmail(document.linkForm.EMAIL.value)==false){
		why+="Please enter valid Email \n";
		show = true;
		document.linkForm.EMAIL.focus();
	}
	if(document.linkForm.siteTITLE.value == "" ){
		why+="Please enter a site Title \n";
		show = true;
		document.linkForm.siteTITLE.focus();
	}
	if(document.linkForm.siteURL.value == "" ){
		why+="Please enter a site URL \n";
		show = true;
		document.linkForm.siteURL.focus();
	}
	if(document.linkForm.description.value == "" ){
		why+="Please enter the Description \n";
		show = true;
		document.linkForm.description.focus();
	}
	if(show){
		alert(why);
		return false;
	}
}
document.write('<scr' + 'ipt type="text\/javascript" src="Scripts/useful.js"><\/script>'); 
