function gotoFunction( mon_form )
{
    if( mon_form.theme.options[mon_form.theme.selectedIndex].value == "market_reasearch" )
        window.open( "http://www.exportnavigator.com/?pays=" +
            mon_form.pays.options[mon_form.pays.selectedIndex].text, "new" );
    else
		if( mon_form.theme.options[mon_form.theme.selectedIndex].value == "links" )
			parent.document.location = mon_form.theme.options[mon_form.theme.selectedIndex].value +
				"_" + mon_form.pays.options[mon_form.pays.selectedIndex].value + ".html" ;
		else
			document.location = mon_form.theme.options[mon_form.theme.selectedIndex].value +
				"_" + mon_form.pays.options[mon_form.pays.selectedIndex].value + ".html" ;	
}