var currentsecond=10

function fRedirect(){
	if (currentsecond!=1){
		currentsecond-=1
	} else {
		window.location='svr.htm';
		return
	}
	setTimeout("fRedirect()",2200)
}

