function showList(name)
{
	if(document.getElementById(name).style.display=="none"){
		document.getElementById(name).style.display="";
	}
	else{
		document.getElementById(name).style.display="none";
	}
}

function funnel_ad_check(f_ad_c_url) {
	ads_url_image = new Image();
	ads_url_image.src = f_ad_c_url;
}
if(typeof window.addEventListener != 'undefined') 
{
	window.addEventListener('load', funnel_ad_check_all, false);
}

funnel_ad_all=[];
function funnel_ad_check_all(){
	
	for(k in funnel_ad_all){//遍历
		if(funnel_ad_all[k] && typeof(funnel_ad_all[k]) == 'string') funnel_ad_check(funnel_ad_all[k]);
	}
}