function showAdvertise(strPlace, intWidth, intHeight)
{
	if (strPlace == undefined){
		strPlace = 'Horizontal900x280';
	}
	if (intWidth == undefined){
		intWidth = 930;
	}
	if (intHeight == undefined){
		intHeight = 300;
	}
	var strReferrer = document.referrer;
	var strPage = window.location.href;
	strReferrer = escape(strReferrer);
	strPage = escape(strPage);
	strCategories = '';
	if (undefined != _arrCategories){
		strCategories = _arrCategories.join(',');
	}
	var strIframeUrl = 'http://local.adult-advertise.com/frontend/advertise/place/show/Name/' + strPlace + '?Referer=' + strReferrer + '&Page=' + strPage + '&Categories=' + strCategories;
	document.write('<div id="adsContainerTopLeft"><iframe scrolling="no" style="width:' + intWidth + 'px; height:' + intHeight + 'px; border:0px;" frameborder="0" src="' + strIframeUrl + '"></iframe></div>');
}
