function validatesys(){
if (document.pp.txtFirst.value==""){
			alert ("Screen Name/Initials?");
			document.pp.txtFirst.focus();
			return false;
}

if (document.pp.txtEmail.value.indexOf("@")==-1||document.pp.txtEmail.value.indexOf(".")==-1){
			alert ("E-mail?");
			document.pp.txtEmail.focus();
			document.pp.txtEmail.select();
			return false;
}
if (document.pp.txtIssue.value==""){
			alert ("Your sucess story?");
			document.pp.txtIssue.focus();
			return false;
}


 return true;

}


function validateds(){
if (document.pp.txtFirst.value==""){
			alert ("First Name?");
			document.pp.txtFirst.focus();
			return false;
}
if (document.pp.txtLast.value==""){
			alert ("Last Name?");
			document.pp.txtLast.focus();
			return false;
}

if (document.pp.txtEmail.value.indexOf("@")==-1||document.pp.txtEmail.value.indexOf(".")==-1){
			alert ("E-mail?");
			document.pp.txtEmail.focus();
			document.pp.txtEmail.select();
			return false;
}
if (document.pp.txtIssue.value==""){
			alert ("Your support issue?");
			document.pp.txtIssue.focus();
			return false;
}


 return true;

}

function validatec(){
if (document.pp.txtFirst.value==""){
			alert ("Your Name?");
			document.pp.txtFirst.focus();
			return false;
}

if (document.pp.txtEmail.value.indexOf("@")==-1||document.pp.txtEmail.value.indexOf(".")==-1){
			alert ("E-mail?");
			document.pp.txtEmail.focus();
			document.pp.txtEmail.select();
			return false;
}
if (document.pp.txtIssue.value==""){
			alert ("Your message?");
			document.pp.txtIssue.focus();
			return false;
}


 return true;

}