// JavaScript Document

var G = 9.087;

var ie

function onload()
{
	ie = (navigator.appName == "Microsoft Internet Explorer" );
}

function togglediv(elementid)
{
	
	if (elementid.className == "exampleShow")
	{
		hidediv(elementid);
	}
	else
	{
		showdiv(elementid); 
	}
}

function showdiv(elementid)
{
	
	elementid.className='exampleShow';
}

function hidediv(elementid)
{
	
	elementid.className='exampleHide';
}


function ke(m, v)
{
	return(m * v * v);
}

function pe(m,g,h)
{
	return(m*g*h);
}

function re(i,w)
{
	return(i * w * w);
}

function feet2meters(ft)
{
	return ft/3.281;
}

