
function ADs_rotate(){	var ad_topCenter_frame = document.getElementById("ad_topCenter_frame");
	var ad_right_frame = document.getElementById("ad_right_frame");
	//document.getElementById("ftheaderNewsLetter").innerHTML = "saher";
    ADs_refresh(ad_topCenter_frame,ad_right_frame);
}

function ADs_refresh(_top,_right){
	var currURL;
	var cityID;
	var page;
	var found;
	
	currURL = location.href;
	found = currURL.indexOf("&");
	
	if(found == -1)
	{
		page='notCity';
	}
	else
	{
		currURL = currURL.split("&");
		currURL = currURL[1];
		currURL = currURL.split("="); //city=115900
		page = currURL[0]; // page
		cityID = currURL[1]; // cityID;
	}

	if(page=='city')
	{
		_top.src = MainURL + "ads/ads_rotator.php?type=top&i=" + ads_rotation_interval + "&cityID=" + cityID;
		_right.src = MainURL + "ads/ads_rotator.php?type=right&i=" + ads_rotation_interval + "&cityID=" + cityID;
	}
	else
	{		_top.src = MainURL + "ads/ads_rotator.php?type=top&i=" + ads_rotation_interval + "&cityID=0";
		_right.src = MainURL + "ads/ads_rotator.php?type=right&i=" + ads_rotation_interval + "&cityID=0";
	}
/*	
	setTimeout(function(){
       ADs_refresh(_top,_right);
	}, ads_rotation_interval*1000);
*/}
