<!-- BEGIN
//----------------------------------------------------------------------------//
function Tabs(name,num,tabs) {
        var box = name + "_box_" + num;
        mybox = document.getElementById(box);

        i=1;
        for (i=1; i<=tabs; i++)  {
                var allboxes = name + "_box_" + i;
                var switchbox = document.getElementById(allboxes);			
		if (switchbox.className == "tabs_box_display") 	{ switchbox.className = "tabs_box_not_display";  }
		if (switchbox.className == "image_box_display") { switchbox.className = "image_box_not_display";  }

                var alltabs = name + "_tab" + i;
                var switchtab = document.getElementById(alltabs);
                if (switchtab) switchtab.className = "tabs_tab"; 
        }	
	if (mybox) {
		if (mybox.className == "image_box_not_display") {
			mybox.className = "image_box_display";
		} else {
			mybox.className = "tabs_box_display";
		}
	}
}
//----------------------------------------------------------------------------//
// End -->
