// redirect script for select-boxes
function selectJump(selector)
{   
	if (selector.options[selector.selectedIndex].value != null && selector.options[selector.selectedIndex].value != "")
	{
		//window.location=selector.options[selector.selectedIndex].value;
		window.open(selector.options[selector.selectedIndex].value,null,"");
    }
}
