// Copyright (c) 1996-1997 Athenia Associates.
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function showMe(entryid) {
	var thisInfo = document.getElementById(entryid).style;
	var selectBoxtest = document.frm.interestCarter;
	// If the entry is showing, hide it.
	if (selectBoxtest.value == "Other") {
		thisInfo.display = "block";
	}
	else if (selectBoxtest.value != "Other") {
		thisInfo.display = "none";
	}
	return false;
}

function showMe2(entryid) {
	var thisInfo = document.getElementById(entryid).style;

	// If the entry is showing, hide it.
	if (thisInfo.display == "block") {
		thisInfo.display = "none";
	}
	else {
		// If the entry is hidden, show it.
		thisInfo.display = "block";
	}
	return false;
}

function showMeone(entryid) {
	for (i = 1;i<=2;i++)
		if (entryid == i) 
			document.getElementById(i).style.display = "block";
		else
			document.getElementById(i).style.display = "none";
}

function showMeonenav(entryid) {
	for (i = 1;i<=2;i++)
		if (entryid == i) 
			document.getElementById(i).style.display = "block";
		else
			document.getElementById(i).style.display = "none";
}
