
//alert("in");
function showHide(theid,state){
	//alert("is this it"+theid)
menu_status = new Array(); 
/*
mymenu1.className = 'hide';
mymenu2.className = 'hide';
mymenu3.className = 'hide';
mymenu4.className = 'hide';
*/

if(state==0){
if(theid=='mymenu1'){
url="iframe/dpmsi_content.html";
parent.document.getElementById("ifrmName").src=url
}else if(theid=='mymenu2'){
//alert("mymenu2 here");
url="iframe/officeConsumables_content.html";
parent.document.getElementById("ifrmName").src=url
//alert(url);
}

else if(theid=='mymenu3'){
//alert("mymenu2 here");
url="iframe/furniture_content.html";
parent.document.getElementById("ifrmName").src=url
//alert(url);
}





}
setTimeout("playMenu('"+theid+"')",100);
}
function playMenu(theid){
	//alert("in functon");
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
        if(menu_status[theid] != 'show') {
          switch_id.className = 'show';
         menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
	switch_id="";
}

