﻿// JScript File

function replaceAll( str, from, to )
{
var idx = str.indexOf( from );
while ( idx > -1 ) {
str = str.replace( from, to );
idx = str.indexOf( from );
}
return str;
}
function DoIt(sID)
{
document.write("<a href='http://www.gstats.co.il'>");
document.write("<img id='im' border=0 src='http://www.gstats.co.il/C.aspx?c=1&s=" + sID + "&r=" + replaceAll(document.referrer,"&","~~") + "&p=" + replaceAll(document.URL,"&","~~") + "' alt='סטטיסטיקה לקידום אתרים' width=0 height=0  />")
document.write("</a>");
}