function getSignon(y)
{
 _hbLink('//sign-on//'+y.options[y.selectedIndex].text,'account+sign+on');
}
 
function getApply(y)
{
 _hbLink('//apply//'+y.options[y.selectedIndex].text,'apply');
}
 
function getState(y)
{
if (y.options[y.selectedIndex].value == '-') return;
 _hbLink('//state//'+y.options[y.selectedIndex].text,'atm+or+branch+finder');
}
 
function getBus(y)
{
 _hbLink('//business//small+business//'+y.options[y.selectedIndex].text,'jump+to');
}
 
function getCorp(y)
{
 _hbLink('//business//corporate//'+y.options[y.selectedIndex].text,'jump+to');
}
 
function getCntry(y)
{
if (y.options[y.selectedIndex].value == '-') return;
 _hbLink('//country//'+findCntryLang(y),'country+site');
}
function findCntryLang(y)
{
var i = y.selectedIndex;
var t = y.options[i].text;
if(t.substring(0,3)=='\240\240-'){
	do{
		i--;
	}while(y.options[i].text.substring(0,3)=='\240\240-');
	t = y.options[i].text+t.substring(2);
}
return(t);
}
