function showChat()
{
if(document.getElementById("uggchat").style.display=='')
{
document.getElementById("uggchat").style.display='none';
document.getElementById("chatLink").innerHTML='Expand Chat';
}
else
{
document.getElementById("uggchat").style.display='';
document.getElementById("chatLink").innerHTML='Hide Chat';
}
}
{
if(document.getElementById("uggchat").style.display=='')
{
document.getElementById("uggchat").style.display='none';
document.getElementById("chatLink").innerHTML='Expand Chat';
}
else
{
document.getElementById("uggchat").style.display='';
document.getElementById("chatLink").innerHTML='Hide Chat';
}
}


