function ssViewer(url){
window.open("/ss_viewer.aspx?" + url,"ss","resizable,width=550,height=350,scrollbars=yes");
return false;
}
function buttonSwitch(id)
{
document.getElementById("buttonSwitcher" + id).style.background="#BED6E5";
document.getElementById("panelSwitch" + id).style.display="block";
for (var i=1;i<4;i++)
{
if(i!=id)
{
document.getElementById("buttonSwitcher" + i).style.background="#fff";
document.getElementById("panelSwitch" + i).style.display="none";
}
}
}