
            document.write("<TABLE WIDTH=194 BORDER=0 CELLSPACING=0 CELLPADDING=0 HSPACE=0 VSPACE=0>"+
              "<TR>"+
                "<TD HEIGHT=39><IMG SRC=images/news_letter.gif WIDTH=106 HEIGHT=17></TD>"+
              "</TR>"+
			  "<tr>"+
			    "<td>"+
                  "<div name=dataarea id=dataarea>"+
                   "</div>"+
				  "</td>"+
				"</tr>"+  
              "<TR>"+
                "<TD><IMG SRC=images/contact_image.gif WIDTH=194 HEIGHT=86></TD>"+
              "</TR>"+
              "<TR>"+
                "<TD HEIGHT=31></TD>"+
              "</TR>"+
              "<TR>"+
                "<TD>"+
		"<BR><BR>"+
                "</TD>"+
              "</TR>"+
            "</TABLE>");
			
			
function xmlhttpPost(strURL,strupdate) {
    var xmlHttpReq = false;
    var self = this;
    // Mozilla/Safari
    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('POST', strURL, true);
    self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    self.xmlHttpReq.onreadystatechange = function() {
        if (self.xmlHttpReq.readyState == 4) {
            updatepage(self.xmlHttpReq.responseText,strupdate);
        }
    }
    self.xmlHttpReq.send('');
}
function updatepage(str,strnewdata){
	document.getElementById(strnewdata).style.display='';
    document.getElementById(strnewdata).innerHTML = str+"";
	
}

xmlhttpPost('news_inner.php','dataarea');			
			