//Function Automatically Load Banners on Left Panel
function AutoLoadNewAds(LoaderID)
{
	//alert(LoaderID);
	var ResponseURL = "ajaxserver/NewAds.php";
	new Ajax.PeriodicalUpdater(LoaderID, ResponseURL, 
							   {
									method : 'post',
									frequency : 5,
									decay : 1
					 			});
}


