function reload_banner()
{
	for(i=0;i<frames.length;i++)
	{
		try{
			if(document.frames[i].name=='banner_frame') {
				url=document.frames[i].document.location.href;
				if(url.indexOf("&g=1")==-1) document.frames[i].document.location.href=url+'&g=1';
				else document.frames[i].document.location.reload();
			}
		}catch(e){
		}
	}
}