(function(){
	
	function C()
	{
		var a = window;
		if(typeof a.marketingmn_ads_channel == 'undefined') return false;
		if(typeof a.marketingmn_ads_width == 'undefined') return false;
		if(typeof a.marketingmn_ads_height == 'undefined') return false;
		return true;
	}
	
	function A()
	{
		if(!C()) 
		{ 
			document.write("<p>Channel not propertly defined</p>"); return; 
		}
		else
		{
		 	var a = window, url = "http://www.marketing-montenegro.com/ads/showad.php"; 
		 	url += "?channel=" + a.marketingmn_ads_channel;
		 	url += "&width=" + a.marketingmn_ads_width;
		 	url += "&height=" + a.marketingmn_ads_height;
		 	document.write('<iframe src="'+url+'" width="'+a.marketingmn_ads_width+'" height="'+a.marketingmn_ads_height+'" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="false" frameborder="0" scrolling="no"></iframe>');
		}
	}
	A();	
})()