function eresponderlink()
{
document.write('<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p align="center"><a style="text-decoration:none;" target="_blank" href="http://SolidIncome.net/go-listbuilder.php" rel="nofollow"><font color="#000000" size="2"><b>Powered By</b></font><br> <img style="padding: 0px;" alt="" src="http://www.dynaoffers.com/images/eresponder.jpg" width="95" border="0" height="30"></a><br></p>')
}

function validation()
{
	if ((document.signupform.Email.value.indexOf('@aol') != -1) || (document.signupform.Email.value.indexOf('@Aol') != -1) || (document.signupform.Email.value.indexOf('@AOL') != -1))
	{
	  alert("AOL email addresses are not acceptable.  Please use another email address. (Gmail,Yahoo, Hotmail and personal domain email addresses are okay)");
	  document.signupform.Email.focus();
	  return false;   
	}  
	
		if ((document.signupform.Email.value.indexOf('spam') != -1) || (document.signupform.Email.value.indexOf('SPAM') != -1) || (document.signupform.Email.value.indexOf('Spam') != -1))
	{
	  alert("Spam email addresses are not acceptable.  Please use another email address. (Gmail,Yahoo, Hotmail and personal domain email addresses are okay)");
	  document.signupform.Email.focus();
	  return false;   
	}
	if(document.signupform.FullName.value=="")
	{
	  alert("Name field is empty!");
	  document.signupform.FullName.focus();
	  return false;   
	}  
	if(document.signupform.Email.value=="")
	{
	  alert("E-mail field is empty!");
	  document.signupform.Email.focus();
	  return false;   
	}  
	if(document.signupform.fcode.value=="")
	{
	  alert("Anti-spam security code field is empty!");
	  document.signupform.fcode.focus();
	  return false;   
	} 
	if(document.signupform.formid.value=="")
	{
	  alert("Invalid form!");
	  document.signupform.formid.focus();
	  return false;   
	}  
	return mailcheck();
	return true;
}
function mailcheck()
	{
	  var str=document.signupform.Email.value;
	  str = str.replace(/\+/g,'%2B');
	  var indx1=str.indexOf("@");
	  if(indx1 <=0)
	  {
		alert (" Email Field Is Not Proper Format");
		return false;
	  }
	  return true;
	}
function createCookie(name,value,days) 
	{
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
	}