function dimAll()
{
	var AllDivs = document.getElementsByTagName('div');

	for ( i=0; i<AllDivs.length; i++ )
	{
		if (( AllDivs[i].className == "menuOption" ) || ( AllDivs[i].className == "marsOption" )) 
		{
			dim(AllDivs[i]); 
		}
	}

	var AllImgs = document.getElementsByTagName('img');

	for ( i=0; i<AllImgs.length; i++ )
	{
		if ( AllImgs[i].className == "webOption" )
		{
			dim(AllImgs[i]); 
		}
	}
}

function ContactUs()
{
	var myRef=window.open('dotNETMail.php', 'mywin', 'left=20,top=20,width=750,height=550,toolbar=1,resizable=0')
}

function brighten(what)
{   
    if (window.ActiveXObject) {   
        what.style.filter = "alpha(opacity=100)"; // IE   
    } else {   
        what.style.opacity = 100; // Gecko/Opera;
	what.style.MozOpacity = 1; // fire fox
    }   
}  

function dim(what)
{
    if (window.ActiveXObject) {   
        what.style.filter = "alpha(opacity=65)"; // IE   
    } else {   
        what.style.opacity = 65; // Gecko/Opera   
	what.style.MozOpacity = 0.65; // fire fox
    }   
}

