// JavaScript Document

function set_reload() {
	var reload_id = setInterval('document.location.href="forum.php"', 3*60000);
}

function userimg_clicked(obj) {
	if (obj.style.width == '120px') {
		obj.style.width = '40px'
		obj.style.height = '40px'
	}
	else {
		obj.style.width = '120px'
		obj.style.height = '120px'
	}
}
