var imPollTimeout=15000;var popUpShowing=false;var declineHash=null;var declineMemberId=null;function PollForImUpdates(updateImUrl){var head=document.getElementsByTagName("head")[0];var script=document.createElement('script');script.type='text/javascript';script.id='ImTextUpdateScript';script.src=updateImUrl;var oldScript=document.getElementById("ImTextUpdateScript");if(oldScript!=null){head.replaceChild(script,oldScript);}else{head.appendChild(script);}};function Loop(updateImUrl){if(!popUpShowing){PollForImUpdates(updateImUrl);}setTimeout("Loop('"+updateImUrl+"');",imPollTimeout);};function InsertImText(ProfileUrl,MugshotUrl,MemberName,MemberId,CommunityId,Hash){var text='<table><tr><th colspan="2" align=center>Instant Message Request</th></tr><tr><td>'+'<a href="'+ProfileUrl+'">'+'<IMG alt="View Profile" src="'+MugshotUrl+'" border=0></a><br>'+'<a href="'+ProfileUrl+'">'+MemberName+'</a></td><td align=center>'+'<p>Would you like to chat?</p>'+'<a href="javascript:AcceptImChat(\''+MemberName+'\', '+MemberId+', \''+Hash+'\')">Yes</a>&nbsp;&nbsp;'+'<a href="javascript:DeclineImChat(\''+MemberId+'\', \''+Hash+'\')">No</a>'+'</td></tr></table>';var popUpDiv=document.getElementById('PopupWindow');popUpDiv.innerHTML=text;popUpDiv.style.visibility="visible";popUpShowing=true;};function AcceptImChat(MemberName,MemberId,Hash){var head=document.getElementsByTagName('head')[0];var oldScript=document.getElementById('ImTextUpdateScript');if(oldScript!=null){head.removeChild(oldScript);}var popUpDiv=document.getElementById('PopupWindow');popUpDiv.style.visibility="hidden";popUpShowing=false;launch('/Pages/IM/IMChat.aspx?MemberId='+MemberId+'&SendReceive=0&hash='+Hash,'imchat_tx_'+MemberName,510,420);};function DeclineImChat(MemberId,Hash){declineHash=Hash;declineMemberId=MemberId;if(window.XMLHttpRequest){xmlhttp=new XMLHttpRequest();xmlhttp.onreadystatechange=DeclineImChat_StateChange;xmlhttp.open('GET','/Pages/IM/IMChat.aspx?MemberId='+MemberId+'&DeclineRequest=1&hash='+Hash,true);xmlhttp.send(null);}else if(window.ActiveXObject){xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');if(xmlhttp){xmlhttp.onreadystatechange=DeclineImChat_StateChange;xmlhttp.open('GET','/Pages/IM/IMChat.aspx?MemberId='+MemberId+'&DeclineRequest=1&hash='+Hash,true);xmlhttp.send();}}var head=document.getElementsByTagName('head')[0];var popUpDiv=document.getElementById('PopupWindow');popUpDiv.style.visibility="hidden";popUpShowing=false;var oldScript=document.getElementById('ImTextUpdateScript');if(oldScript!=null){head.removeChild(oldScript);}};function DeclineImChat_StateChange(){if(xmlhttp.readyState==4){if(xmlhttp.status==200){}else{document.location.href='/Pages/IM/IMChat.aspx?MemberId='+declineMemberId+'&DeclineRequest=1'+'&Hash='+declineHash+'&Redirect='+document.location.href;}}} 