// Copyright (C) 2008 BlueGolf, LLC. All Rights Reserved
function PcLink()
{}
PcLink.close=function()
{this.onclick=null;window.close();return false;}
PcLink.init=function()
{if(window.onload)
{var oldHandler=window.onload;window.onload=function()
{PcLink.onload();oldHandler();}}
else
{window.onload=PcLink.onload;}}
PcLink.onload=function()
{if(/^\/+manage\//i.test(window.location.pathname))
{document.cookie='pclink=;path=/';}
else if(!(/^\/+bluegolf\/+[^\/]+\/+pc\//i.test(window.location.pathname))&&(/(^|; )pclink=([^;]+)/.test(document.cookie)))
{var href=RegExp.$2;var tabs=document.getElementById('tabs');if(tabs==null)
{tabs=document.getElementById('uitab');}
if(tabs&&!(/(^|\?|&)full=(n|f|0)/i).test(window.location.search))
{var div=document.createElement('div');var a=document.createElement('a');if(window.opener)
{var text='Close Window';a.href='#';a.onclick=PcLink.close;}
else
{text='My Account';a.href=href;}
div.insertBefore(a,null);a.insertBefore(document.createTextNode(text),null);div.style.position='absolute';div.style.right='3px';div.style.top='3px';div.style.fontWeight='normal';tabs.style.position='relative';tabs.insertBefore(div,null);}}}
PcLink.init();