	function redirect() {
		var rand_no = Math.random();
		if(rand_no <= 0.5)
			this.location.href = 'yes.html';
		else
			this.location.href = 'no.html';
	}
	setTimeout ( redirect, 4000);