<!--
/*
buttons.js
universla button mouseover and onclick
*/

function overButton(whichButton)
{
	document.getElementById(whichButton).style.backgroundColor ='#FFFFFF';
}

function offButton(whichButton)
{
	document.getElementById(whichButton).style.backgroundColor ='#00CC99';
}

function clickButton(whichButton)
{
	switch(whichButton)
	{
	case 'send':
	document.contact_form.submit();
		break;
	case 'reset':
	document.contact_form.reset();
		break;
	}
}

// -->
