
function WriteAdvtDiv(divId, height)
{
	if (eval("typeof(str_" + divId + ")") != "undefined")
	{
		var style = height > 0?" style='height:" + height + "px'":"";
		//
		document.write("<div id='" + divId + "'" + style + "></div>");
		//document.write("<div id='" + divId + "'></div>");
	}
    else
    {
        document.write("<div id='" + divId + "' style='height:0px;'><spacer></spacer></div>");
    }
}
function BeginLoadAdvts()
{
	if (typeof(LoadAdvts)=="function")
	{
		LoadAdvts();
	}
}
