// JavaScript Document
if (document.referrer) 
{
    var urlloc = document.referrer
    var loc = urlloc.toLowerCase()

// Seeeking from Yahoo
	var dns1="search.yahoo"
    if (loc.indexOf(dns1) != -1)
	{
	//	location.href="http://www.ibt.ca/v2/items/index.php?referer=" + urlloc
	}
}

str = location.href;
if (str.indexOf("http://ibt.ca") != -1) 
{
	szURL = document.URL;
	str = str.replace(/ibt.ca/,"www.ibt.ca");
	//document.write(str);
}

