document.getElementById("Newsletter").innerHTML="<iframe id='SaveFrame' src='' style='visibility: hidden; width: 1px; height: 1px'></iframe><Div id='newsdiv'><table border='0' cellpadding='1' cellspacing='1' width='100%'><tr><td class='tdtext'></td></tr><tr><td class='tdEmailText'><input class='EmailText' id='EmailText' name='textfield' type='text' value='' /></td></tr><tr><td class='tdSubscribeButton'><input class='SubscribeButton' onclick=SaveNews(7,EmailText.value); id='SubscribeButton' name='Submit2' type='button' value='Subscribe' /></td></tr></table></Div>";


function SaveNews(CompanyID, EmailAddress)
{
if (EmailAddress =="") {
alert("Please enter a valid email address.")
}
else

{
document.getElementById('SaveFrame').src="http://www.autom8.biz/Webservices/SaveNewsLetter.aspx?CompanyID="+CompanyID+"&EmailAddress="+EmailAddress


document.getElementById('newsdiv').innerHTML='<b>Thank you for subscribing to our monthly news letter.</b>'
document.getElementById('EmailText').value=''


}

}




