function gotou(url) {
 window.location=url
}

function go(url, delay) {
 u=url
 setTimeout("gotou(u)", delay*1000);
} 
