(function(){
b=window;
var i=document.getElementById(b.clsSearchIframeName);
var p=document.getElementById(b.clsSearchPreloadSpan);
if (i) {
	var f=document.createElement("iframe");
	d={name:"clsSearchFrame",
	   src:b.clsSearchDomain+b.clsSearchPath+b.location.search,
	   frameBorder:b.clsSearchFrameborder,
	   width:b.clsSearchFrameWidth,
	   height:b.clsSearchFrameHeight,
	   marginWidth:"0",
	   marginHeight:"0",
	   hspace:"0",
	   vspace:"0",
	   allowTransparency:"true",
	   scrolling:"auto"};
	for (var g in d)
		f.setAttribute(g,d[g]);
	i.appendChild(f);
	f.attachEvent?f.attachEvent("onload",function(){window.scrollTo(0,0);p.style.visibility='hidden';}):f.addEventListener("load",function(){window.scrollTo(0,0);p.style.visibility='hidden';},false);
	}
})();