function reloadHtml(el, src)
{
	  var xmlHttp;
	  var status;
	  try
		{
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
		}
	  catch (e)
		{
		// Internet Explorer
		try
		  {
		  xmlHttp=new ActiveXObject('Msxml2.XMLHTTP');
		  }
		catch (e)
		  {
		  try
			{
			xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');
			}
		  catch (e)
			{
			alert('Your browser does not support AJAX!');
			return false;
			}
		  }
		}
		xmlHttp.onreadystatechange=function()
		  {
		  if(xmlHttp.readyState==4)
			{
			  var str = xmlHttp.responseText;
			  document.getElementById(el).innerHTML=str;
			}
		  }
		xmlHttp.open('GET', src,true);
		xmlHttp.setRequestHeader('Content-Type', 'text/html; charset=windows-1255');
		xmlHttp.send(null);
	return true;
}

function updateCode()
{
	var counteridref = document.getElementById("counterid").value;
	if (counteridref == '') {
		alert(updateCodeMessage);
		return;
	}
	var ref_href='<a href="http://www.10lee.com" title="free web counter | 10lee.com">';
	var ref_href_array = new Array();
	ref_href_array[ref_href_array.length]='<a href="http://www.10lee.com" title="free web counter | 10lee.com">';
	ref_href_array[ref_href_array.length]='<a href="http://www.10lee.com" title="free web counter | 10lee.com">';
	ref_href_array[ref_href_array.length]='<a href="http://www.10lee.com" title="free web counter | 10lee.com">';
	ref_href_array[ref_href_array.length]='<a href="http://www.10lee.com" title="free web counter | 10lee.com">';
	ref_href_array[ref_href_array.length]='<a href="http://www.10lee.com" title="free web counter | 10lee.com">';
	ref_href_array[ref_href_array.length]='<a href="http://www.wapfrog.com" title="free mobile games">';
	ref_href_array[ref_href_array.length]='<a href="http://www.wapfrog.com" title="downloads mobile games">';
	ref_href_array[ref_href_array.length]='<a href="http://www.wapfrog.com" title="free games for nokia">';
	ref_href_array[ref_href_array.length]='<a href="http://www.wapfrog.com" title="free mobile">';
	ref_href_array[ref_href_array.length]='<a href="http://www.wapfrog.com" title="free ringtones">';
	ref_href_array[ref_href_array.length]='<a href="http://www.wapfrog.com" title="samsung free">';
	ref_href_array[ref_href_array.length]='<a href="http://www.wapfrog.com" title="sony ericsson free">';
	ref_href = ref_href_array[Math.floor(Math.random() * ref_href_array.length)];
	var ref_id='?reset=' + document.getElementById("counter").value + '&href=' + counteridref;
	var ref_js=ref_href + '<img src="http://www.10lee.com/10lee/counter.php' + ref_id + '" style="border: none;"></a>';
	document.getElementById("code").value=ref_js;
	document.getElementById("code").select();
}
