function redirectForum(forum, id, offset){ 
	if(forum!=""){
		window.location = "index.asp?info=associados/forum&forum=" + forum + "&offset=" + offset + "&topic=" + id;
	}else{
		window.location = "index.asp?info=associados/forum&offset=" + offset + "&topic=" + id;
	}
}

function validarCamposForum(){
	if (window.formReply.tfAssunto.value == ""){
		window.formReply.tfAssunto.focus();
		alert("Campo 'Assunto' é de preenchimento obrigatório.");
		return false;
	}
}

function listImage(user){
	OpenWin = window.open("upload/list.asp?user="+user,"list","left=370,top=100,width=500,height=500,toolbar=no,status=yes,menubar=no,location=no,scrollbars=yes,resize=no");
	OpenWin.focus();
}