function fGo(url, target)
{
	if(target==null){
		document.location.href = url
	}else{
		eval(target + ".location.href='" + url + "'")
	}
}