function showhide() {
	if (document.getElementById('firmdata').style.display == 'none')
	{
		document.getElementById('firmdata').style.display = 'block';
	}
	else
	{
		document.getElementById('firmdata').style.display = 'none';
	}
}


function showhide2(elementid,textrestore,textchange) {
	if (document.getElementById(elementid).style.display == 'none')
	{
		document.getElementById("l" + elementid).innerHTML = textchange;
    document.getElementById(elementid).style.display = 'block';
	}
	else
	{
		document.getElementById("l" + elementid).innerHTML = textrestore;
    document.getElementById(elementid).style.display = 'none';
	}
}



function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function submitit(id) {
  var d = document.forms[0];
  d.id2save.value=id;
  d.submit();
}

function changeColor(elem,color)
{
  
  //alert(elem.cells.length) 
  //elem.style.backgroundColor=color;
  for (i=0;i<elem.cells.length;i++)
    elem.cells[i].style.backgroundColor=color;
}
function changeColorDiv(elem,color)
{
  
  //alert(elem.cells.length) 
  elem.style.backgroundColor=color;
}
