
function addLinkCount()
	{
	//alert(http_request.readyState);
        if (http_request.readyState == 4) {
            if (http_request.status == 200) {
               //alert("Link Count incremented");
            } else {
                alert('There was a problem with the request.');
            }
        }

		
	}

function addHitForNotasco()
{
	
	var url="/scripts/linkcounter.php";
	var rhandler= addLinkCount;
	makeRequest(url,rhandler);
	window.open("http://www.softwaredevelopersindia.com");
}
