var dc=document;
var _dc={
d1:function(){
dc.getElementById('h0').style.background="#fff";
dc.getElementById('h0').style.fontWeight="bold";
dc.getElementById('h1').style.color="0a7502";
dc.getElementById('h2').style.background="#fff url(http://files.eborok.com/kohm/tag.gif) 4px 9px no-repeat";
},
d1_none:function(){
dc.getElementById('h0').style.background="";
dc.getElementById('h0').style.fontWeight="normal";
dc.getElementById('h1').style.color="#000";
dc.getElementById('h2').style.background="";
},
d2:function(){
dc.getElementById('h3').style.background="#fff";
dc.getElementById('h3').style.fontWeight="bold";
dc.getElementById('h4').style.color="0a7502";
dc.getElementById('h5').style.background="#fff url(http://files.eborok.com/kohm/tag.gif) 4px 9px no-repeat";
},
d2_none:function(){
dc.getElementById('h3').style.background="";
dc.getElementById('h3').style.fontWeight="normal";
dc.getElementById('h4').style.color="#000";
dc.getElementById('h5').style.background="";
},
d3:function(){
dc.getElementById('h6').style.background="#fff";
dc.getElementById('h6').style.fontWeight="bold";
dc.getElementById('h7').style.color="0a7502";
dc.getElementById('h8').style.background="#fff url(http://files.eborok.com/kohm/tag.gif) 4px 9px no-repeat";
},
d3_none:function(){
dc.getElementById('h6').style.background="";
dc.getElementById('h6').style.fontWeight="normal";
dc.getElementById('h7').style.color="#000";
dc.getElementById('h8').style.background="";
},
d4:function(){
dc.getElementById('h9').style.background="#fff";
dc.getElementById('h9').style.fontWeight="bold";
dc.getElementById('h10').style.color="0a7502";
dc.getElementById('h11').style.background="#fff url(http://files.eborok.com/kohm/tag.gif) 4px 9px no-repeat";
},
d4_none:function(){
dc.getElementById('h9').style.background="";
dc.getElementById('h9').style.fontWeight="normal";
dc.getElementById('h10').style.color="#000";
dc.getElementById('h11').style.background="";
},
d5:function(){
dc.getElementById('h12').style.background="#fff";
dc.getElementById('h12').style.fontWeight="bold";
dc.getElementById('h13').style.color="0a7502";
dc.getElementById('h14').style.background="#fff url(http://files.eborok.com/kohm/tag.gif) 4px 9px no-repeat";
},
d5_none:function(){
dc.getElementById('h12').style.background="";
dc.getElementById('h12').style.fontWeight="normal";
dc.getElementById('h13').style.color="#000";
dc.getElementById('h14').style.background="";
},
d6:function(){
dc.getElementById('h15').style.background="#fff";
dc.getElementById('h16').style.fontWeight="bold";
dc.getElementById('h16').style.color="0a7502";
dc.getElementById('h17').style.background="#fff url(http://files.eborok.com/kohm/tag.gif) 4px 9px no-repeat";
},
d6_none:function(){
dc.getElementById('h15').style.background="";
dc.getElementById('h16').style.fontWeight="normal";
dc.getElementById('h16').style.color="#000";
dc.getElementById('h17').style.background="";
}
}
function doShow(tab_id){
if (tab_id==0){_dc.d1();_dc.d2_none();_dc.d3_none();_dc.d4_none();_dc.d5_none();_dc.d6_none();
LoadPage('home.service');
}else if (tab_id==1){_dc.d2();_dc.d1_none();_dc.d3_none();_dc.d4_none();_dc.d5_none();_dc.d6_none();
LoadPage('hist.service');
}else if (tab_id==2){_dc.d3();_dc.d1_none();_dc.d2_none();_dc.d4_none();_dc.d5_none();_dc.d6_none();
LoadPage('aims_objs.service');
}else if (tab_id==3){_dc.d4();_dc.d1_none();_dc.d2_none();_dc.d3_none();_dc.d5_none();_dc.d6_none();
LoadPage('portfolio.service');
}else if (tab_id==4){_dc.d5();_dc.d1_none();_dc.d2_none();_dc.d3_none();_dc.d4_none();_dc.d6_none();
LoadPage('activities.service');
}else{_dc.d6();_dc.d1_none();_dc.d2_none();_dc.d3_none();_dc.d4_none();_dc.d5_none();
LoadPage('publication.service');
}
}
function LoadPage(page){
try {xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");}  catch (e) { alert("Error: Could not load page.");}
dc.getElementById("docs").innerHTML='<h2>Kisa naisingjadi (Please wait)...</h2>';
scroll(0,0);
xmlhttp.onreadystatechange = function(){
if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
dc.getElementById("docs").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", page);
xmlhttp.send(null);
}