function hideService(sid, sname)
{
	$('service_'+sid).update("<div id='serverList' onClick=\"showService('"+sid+"', '"+sname+"');\">Hide "+sname+" details</div>");
}

function showService(sid, sname)
{
	$('service_'+sid).update("<div id='serverList' onmouseover="this.addClassName('serverListOver')" onmouseout=this.removeClassName("serverListOver") onClick=\"getResponse('services', 'service_id("+sid+")', 'updates"+sid+"'); hideService('"+sid+"', '"+sname+"');\">Show "+sname+" details</div>");
	$('updates'+sid).update("");
}

