var relPath = 'http://wrcdevapp/ncwrc/';
//var relPath = 'http://www.ncwildlife.org/';

function mouseover(btnID)
{
	document.getElementById(btnID).className = "btnStyleOver";

}

function mouseout(btnID)
{
	document.getElementById(btnID).className = "btnStyle";
}

function showHideOther(ddList)
{
	//shows or hides the other text row based on the 
	//value in the drop down list
	var strID = ddList.id;
	var rowID = strID.replace("dropValues","trOther");
	if (ddList.value == "12")
		document.getElementById(rowID).style.display = "block";
	else
		document.getElementById(rowID).style.display = "none";
		
}

