function showDiv(divID)
{
	var div = document.getElementById(divID);
	div.style.display = "block"; //display div
}

function hideDiv(divID)
{
	var div = document.getElementById(divID);
	div.style.display = "none"; // hide
}

function hideAllDivs()
{
	//Loop through the seclect menu values and hide all
	var selectMenu = document.getElementById("selectLOG");
	for (var i=0; i<=selectMenu.options.length -1; i++)
	{
		hideDiv(selectMenu.options[i].value);
	}
}

function toggle(showID)
{
	hideAllDivs(); // Hide all
	if(showID == 'firsttime'){
		window.location = 'https://web17.secureinternetbank.com/pbi_pbi1961/Pbi1961.asp?Rt=122244854&LogonBy=Connect3&PRMAccess=Account&WCI=FtuLogon&WCE=Show';
	}else{
		showDiv(showID); // Show the one we asked for
	}
}

function goto(form) { var index=form.select.selectedIndex
if (form.select.options[index].value != "0") {
location=form.select.options[index].value;}}
