function takeMeTo(hndl, user) {
	if (!top.confirmGo())
		return false;
	var link = hndl.options[hndl.selectedIndex].value;
    if (link != "") {
		if (user=='customer') {
			window.location.href = linkArray[link];
		}
		else {
			window.location.href = link;
		}		
    }
}
