//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
function OpenUserProfile(UID) 
{
	if(navigator.appName.indexOf("WebTV")!=-1)
		window.location.href="../locker/profile.asp?uid=" + escape(UID);
	else
		window.open("../locker/profile.asp?uid=" + UID,"profile","menubar=no,scrollbars=no,status=no,width=508,height=398,resizable=no");
}
