



document.write("<TABLE WIDTH=193 BORDER=0 CELLSPACING=0 CELLPADDING=0 HSPACE=0 VSPACE=0>"+

	  "<TR>"+

		"<TD ALIGN=CENTER><IMG SRC=images/featured-work_title.jpg WIDTH=193 HEIGHT=23></TD>"+

	  "</TR>"+

	  "<TR>"+

		"<TD BACKGROUND=images/serices_bg.jpg ALIGN=CENTER><div name=dataarea id=dataarea></div>"+

		"</TD>"+

	  "</TR>"+

	  "<TR>"+

		"<TD BACKGROUND=images/left_nav_bg.gif ALIGN=CENTER><IMG SRC=images/serices-bottom_image.jpg WIDTH=193 HEIGHT=22></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('');

}

///javascript:xmlhttpPost('getdata.asp?t='+val,'dataarea',val);



function updatepage(str,strnewdata){

	document.getElementById(strnewdata).style.display='';

    document.getElementById(strnewdata).innerHTML = str+"";

	

}



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