var thisPage = (location.href).toLowerCase();
if(thisPage.indexOf("sitemanager.php") >= 0)
	thisPage = sm_currentPage;
if(thisPage.indexOf("sitemap.php") >= 0)
	thisPage = "www.i4a.org/";	
var pos = thisPage.indexOf("i4a.org");
if(pos >= 0) {
	pos += 7;
	
	var qsPos = thisPage.indexOf("?");
	if(qsPos >= 0)
		thisPage = thisPage.substr(pos, qsPos - pos);
	else
		thisPage = thisPage.substr(pos, thisPage.length-pos);
	
	if(thisPage.charAt(0) == '/')
		thisPage = thisPage.substr(1, thisPage.length-1);
}
document.write("<scr" + "ipt language=\"JavaScript\" src=\"http://www.i4a.org/includes/banner.php?page=" + thisPage + "\"></scr" + "ipt>");