function makeRequest(url)
{
	var http_request = false;

	if (window.XMLHttpRequest)
	{ // Mozilla, Safari, ...
		http_request = new XMLHttpRequest();
		if (http_request.overrideMimeType)
		{
			http_request.overrideMimeType('text/xml');
			// See note below about this line
		}
	}
	else if (window.ActiveXObject)
	{ // IE
		try
		{
			http_request = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
				http_request = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e) {}
		}
	}
				
	if (!http_request)
	{
		//alert('Giving up :( Cannot create an XMLHTTP instance');
		return false;
	}
	http_request.onreadystatechange = function() { };
	http_request.open('GET', url, true);
	http_request.send(null);
}

document.writeln("<a href=\"http:\/\/www.amazon.com\/b\/?node=678551011&tag=desswa-20&camp=213561&creative=392577&linkCode=ur1&adid=0QRPDFN3VS16JE8XP8ZT&\" target=\"_blank\" onclick=\"javascript:makeRequest('http://www.designswan.com/ad/adcnt.php?slot=1')\"><img src=\"\/ad/amazon01.gif\" width=\"125\" height=\"125\" \/><\/a>");
document.writeln("<a href=\"http:\/\/www.designswan.com\" target=\"_blank\" onclick=\"javascript:makeRequest('http://www.gadgetsharp.com/ad/adcnt.php?slot=2')\"><img alt=\"\" src=\"http:\/\/i856.photobucket.com\/albums\/ab125\/kamanwu\/designads.gif\" width=\"125\" height=\"125\" \/><\/a>");
//document.writeln("<a href=\"#\" target=\"_blank\" onclick=\"javascript:makeRequest('http://www.gadgetsharp.com/ad/adcnt.php?slot=3')\"><img alt=\"\" src=\"http:\/\/www.gadgetsharp.com\/wp-content\/themes\/crossblock\/images\/adshere.gif\" width=\"125\" height=\"125\" \/><\/a>");
//document.writeln("<a href=\"#\" target=\"_blank\" onclick=\"javascript:makeRequest('http://www.gadgetsharp.com/ad/adcnt.php?slot=4')\"><img alt=\"\" src=\"http:\/\/www.gadgetsharp.com\/wp-content\/themes\/crossblock\/images\/adshere.gif\" width=\"125\" height=\"125\" \/><\/a>");
