function showuseronline(){
document.getElementById("showip").style.display="";
document.getElementById("startip").innerHTML='<a href="javascript:hideuseronline();" style="text-decoration:none;" title="Hide IP Address"><B>Hide IP</B></a><br>';
}
function startuseronline() {
document.getElementById("startip").innerHTML='<a href="javascript:showuseronline();" style="text-decoration:none;" title="Show All IP Address"><B>Show IP</B></a><br>';
}
function hideuseronline() {
document.getElementById("showip").style.display="none";
document.getElementById("startip").innerHTML='<a href="javascript:showuseronline();" style="text-decoration:none;" title="Show All IP Address"><B>Show IP</B></a><br>';
}