<!--
function changebut(x,col)
{
switch (col) {
       case 10:
         {document.getElementById(x).style.background="#cc0000";
				  break;}
       case 0:
         {document.getElementById(x).style.background="#ff0000";
          break;}
       case 1:
         {document.getElementById(x).style.backgroundColor="#990033";
          break;}
			}		
}
							
function PosButton(action, str)
{
	if( action )
	{
		document.getElementById(str).className = 'pos_rel';
	}
 else
	{
	 document.getElementById(str).className = 'pos_stat';
	}
}

							
function ViewSubMenu(action, str)
{
	if( action )
	{
		document.getElementById(str).style.display = 'block';
	}
 else
	{
	 document.getElementById(str).style.display = 'none';
	}
}

function ViewLeftMenu(action, pstr)
{
	if( action )
	{
		document.getElementById(pstr).style.background = '#fde1cb';
		document.getElementById(pstr).style.border = '1px ridge #fde1cb';
		document.getElementById(pstr).style.borderBottom = '0px ridge #fde1cb';
		}
	else
	{
		document.getElementById(pstr).style.background = '#fff6ee';
		document.getElementById(pstr).style.border = '1px solid #fff6ee';
		document.getElementById(pstr).style.borderBottom = '0px solid  rgb(187,204,221)';
		document.getElementById(pstr).style.borderTop = '1px solid  rgb(187,204,221)';
	}
}


function hidd_viz(x,id1)

{
if(x==1){
  document.getElementById(id1).style.display = 'block';
	}
if(x==2){
	document.getElementById(id1).style.display = 'none';
	}
}


-->
