var directID = "";
function FLwrite(dID)
{
	directID = dID;
	var timer;
	timer = setTimeout("doReplace()",500);
}

function doReplace(){
	var banner = location.search;
	var bnr_Id = banner.replace(/\?/,'');
	var html = "../flash/index.html?";
	var direct_Id = "";
	
	if(directID != "") direct_Id = "&direct_id="+directID;
	
	location.replace(html+bnr_Id+direct_Id);
}
