<!--
  function showhidefield()
  {
	// Translation
    if (document.estimate.translationchkbox.checked)
    {
      document.getElementById("hideablearea").style.display = "block";
    }
    else
    {
      document.getElementById("hideablearea").style.display = "none";
    }
	// Litigation
	if (document.estimate.litigationchkbox.checked)
    {
      document.getElementById("hideablearea2").style.display = "block";
    }
    else
    {
      document.getElementById("hideablearea2").style.display = "none";
    }
	// Interpreting
	if (document.estimate.interpretchkbox.checked)
    {
      document.getElementById("hideablearea3").style.display = "block";
    }
    else
    {
      document.getElementById("hideablearea3").style.display = "none";
    }
	// Multimedia
	if (document.estimate.multimediachkbox.checked)
    {
      document.getElementById("hideablearea4").style.display = "block";
    }
    else
    {
      document.getElementById("hideablearea4").style.display = "none";
    }
	// Transcription
	if (document.estimate.transcriptchkbox.checked)
    {
      document.getElementById("hideablearea5").style.display = "block";
    }
    else
    {
      document.getElementById("hideablearea5").style.display = "none";
    }
	// Web Services
	if (document.estimate.webchkbox.checked)
    {
      document.getElementById("hideablearea6").style.display = "block";
    }
    else
    {
      document.getElementById("hideablearea6").style.display = "none";
    }
  }

function showLayer(whichLayer)
	{
		
		if (document.getElementById)
		{
			// this is the way the standards work
			var style2 = document.getElementById(whichLayer).style;
			style2.display = "block";
			// style2.visibility = 'visible';
		}
		else if (document.all)
		{
			// this is the way old msie versions work
			var style2 = document.all[whichLayer].style;
			style2.display = "block";
			// style2.visibility = 'visible';
		}
		else if (document.layers)
		{
			// this is the way nn4 works
			var style2 = document.layers[whichLayer].style;
			style2.display = "block";
			// style2.visibility = 'visible';
		}
	}
	
function hideLayer(whichLayer)
	{
		if (document.getElementById)
		{
			// this is the way the standards work
			var style2 = document.getElementById(whichLayer).style;
			style2.display = "";
		}
		else if (document.all)
		{
			// this is the way old msie versions work
			var style2 = document.all[whichLayer].style;
			style2.display = "";
		}
		else if (document.layers)
		{
			// this is the way nn4 works
			var style2 = document.layers[whichLayer].style;
			style2.display = "";
		}
	}
function ShowAndHide() {
		var i, a, ok, temp;
		for(i=0; (a = document.getElementsByTagName("input")[i]); i++) {
			if (a.type == "radio" && a.checked && a.id == "RadioButton1") {				
				hideLayer('commentForm2');									
				showLayer('commentForm');					
			}	
			if (a.type == "radio" && a.checked && a.id == "RadioButton2") {				
				hideLayer('commentForm');					
				showLayer('commentForm2');					
			}				
			if (a.type == "radio" && a.checked && a.id == "RadioButton3") {				
				hideLayer('commentForm');					
				hideLayer('commentForm2');					
			}					
		}			
	}
//-->
