function setTimeout_location(time_sec,location_url) {
	if (time_sec) {
		//<input type="text" name="time" size="1" value="5" />
		document.getElementById('time').value = time_sec;
		setInterval("if ( document.getElementById('time').value > 0 ) document.getElementById('time').value=document.getElementById('time').value-1; else document.getElementById('time').value = 'Loading...';",1000);
		window.setTimeout("document.form.time.value='0';location=('"+location_url+"');",time_sec*1000);
	}else{
		location=location_url;
	}
}

