function doRedirect(Target)
{
	if(Target=="") {
		setTimeout( "window.location.href = 'index.html'", 5000 );	
	} else {
    	setTimeout( "window.location.href = '" + Target + "'", 5000 );
	}
}