// JavaScript Document
function goto(url,time)
{
	var www = url;
	setTimeout(function() { window.location.href = www; }, time);
}


