function checkFormRight()
{
  var missinginfo = "";
  var email = document.getElementById("EMAIL_ADDRESS").value;
  
    if ((email  == "") ||(email.indexOf('@') < 1) || (email.indexOf('.') == -1))
      {
            missinginfo += "Invalid e-mail address!\n";
        alert(missinginfo);
           return false;
      }
      else 
      {
        var pageURL = document.URL;
            document.newsLettSide.url.value = pageURL;  
 
      }
        return true;
}
function cleartext ()
{
    var email = document.getElementById("EMAIL_ADDRESS").value;
      if (email == "richqz@hotmail.com")
        document.getElementById("EMAIL_ADDRESS").value = "";
    
}
 var today = new Date();
    var dayofweek = today.getDay();
    var newday;
    if (dayofweek==6 )
    {
       today.setDate(today.getDate() -1);       
    }
    if (dayofweek==7 )
    {
        today.setDate(today.getDate() -2);       
    }
     
    var day="0";
    var month = "0";
    var year = today.getFullYear();
    
    if (today.getMonth()+1 < 10)
       month = month + (today.getMonth()+1);
    else
       month = today.getMonth() + 1;
    if (today.getDate() < 10)
        day = day + today.getDate();
    else
        day = today.getDate ();
       
    var strNewsletter = "newsletter" + month + day + year + ".htm";
    var show = "<div class='label-module'><a href='http://www.imediaconnection.com/newsletter/" + strNewsletter  + "'>DAILY NEWSLETTER</a></div>";
    document.write('<form name=newsLettSide method=get Language="Javascript" action="http://www.imediaconnection.com/newsletter/newslettersubscribe.aspx" onSubmit="return checkFormRight();" style="margin: 0;">  ');
    document.write('<div class="module-right">');
    // document.write('                <div style="height:190px;background:url(http://www.imediaconnection.com/newsletter/images/bg_newsletter_module.gif) no-repeat bottom left;border:1px solid #ccc;margin:6px 0 0;padding:6px 10px 10px">');
    document.write(show);
    //document.write('                    <div style="font:11px verdana;margin:-4px 0 12px">Get the latest industry news, event photos, video coverage, upcoming events, and best practices for the interactive industry.</div>');
    document.write('                    <div class="inp" style="float:left"><input name="EMAIL_ADDRESS" type="text" onFocus="this.value=\'\';" value="Enter email address" style="background:#fff url(http://www.imediaconnection.com/newsletter/images/bg_input.gif) repeat-x top;border:1px solid #759ec6;width:172px; height: 20px; margin-right: 5px; padding:3px 3px 1px"></div>');
    document.write('                    <div class="inp" style="float:left;margin-top:3px;"><input name="signUp" type="image" src="/content/wp/btn_subscribe(1).gif" vspace="2" alt="Subscribe"></div>');
    document.write('                    <br class="clear"/>');
    document.write('                    <div class="link"><a href="http://www.imediaconnection.com/newsletter/newslettersubscribe.aspx">Learn More</a> &raquo;</div>');
    document.write('            </div>');

    document.write('</form>  ');

    //document.write('<p class="twitter_promo"><a href="http://www.twitter.com/iMediaTweet" title="iMediaTweet on Twitter"><img src="http://assets.imediaconnection.com/images/global/twitter_button.gif" alt="Check out iMediaTweet" /></a></p>');
