function showtab(divid)
{
   hide("tab1");
   hide("tab2");
   hide("tab3");
   hide("tab4");
   show(divid);
}
function hide(divid)
{
	document.getElementById(divid).style.display='none';
	document.getElementById(divid+"button").className=divid;

}
function show(divid)
{
	document.getElementById(divid).style.display='block';
	document.getElementById(divid+"button").className=divid+"selected";


}