function goProduct( selectElement, branch )
{
	var s = selectElement.options[selectElement.selectedIndex].value;
	s = "../" + branch + "/" + s + ".html";
	window.location = s;
}

function gotoLink(sel)
{			
	var s = sel.options[sel.selectedIndex].value;		
	window.location = s;
}
