function phpads_deliverActiveX(content)
{
	document.write(content);	
}

function phpads_addAdJs(zone)
{
	if (!document.phpAds_used) 
		document.phpAds_used = ',';
		
	var phpAds_random = new String (Math.random()); 
	phpAds_random = phpAds_random.substring(2,11);
	
	var tmpBuff = "";
	tmpBuff += ("<" + "script type='text/javascript' src='");
	tmpBuff += ("/adserver/adjs.php?n=" + phpAds_random);
	tmpBuff += ("&amp;what=zone:"+zone);
	tmpBuff += ("&amp;exclude=" + document.phpAds_used);
	if (document.referrer)
		tmpBuff += ("&amp;referer=" + escape(document.referrer));
	tmpBuff += ("'><" + "/script>");
	
	document.write(tmpBuff);	
}