<script>
function yon () {
document.getElementById('but').style.backgroundColor = "red";
document.getElementById('but').style.color = "white";
document.getElementById('but').style.fontSize = "20px";
setTimeout(function () {
window.location ='http://www.google.com/';
},5000)
}
</script>