function gotoprofile(memID)
 {
	document.gotoprofile.id_member.value = memID;
	document.gotoprofile.action = "_profile_myview.aspx?id_member=" + memID;
	//replace ampersands in URL with &amp; 
	document.gotoprofile.page_from_url.value = document.gotoprofile.page_from_url.value.replace("&", "&amp;");
	document.gotoprofile.submit();
 }
 
 