function reloadPageIf() {
	var e = document.getElementById('reloader');
	if(e)
		setTimeout('reloadPage();', e.getAttribute('duration')*1000);
}

function reloadPage() {
	document.location.href = document.location.href;
}

reloadPageIf();
