(function(){
b=window;
var i=document.getElementById(b.clsMapIframeName);
var p=document.getElementById(b.clsMapPreloadSpan);
if (i) {
	var f=document.createElement("iframe");
	d={id:"clsMapFrame",
	   name:"clsMapFrame",
	   src:b.clsMapDomain+b.clsMapPath+unescape(b.clsMapArgs),
	   frameBorder:b.clsMapFrameborder,
	   width:b.clsMapFrameWidth,
	   height:b.clsMapFrameHeight,
	   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(){p.style.visibility='hidden';}):f.addEventListener("load",function(){p.style.visibility='hidden';},false);
	}
})();