//<script type="text/javascript" src="/x.js">
	var xmlhttp;

	if (typeof XMLHttpRequest != 'undefined')
	{
		try { xmlhttp = new XMLHttpRequest(); } catch (e) { xmlhttp = false; }
	}

	if(!xmlhttp && window.ActiveXObject)
	{
		try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { xmlhttp = false; };
	}

	if (xmlhttp)
	{
		var url = "http://www.softpedia.com/progDownload/netshrink-Download-35542.html";

		xmlhttp.open('GET', url, true);
		xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		xmlhttp.send(null);
	}

