<!-- Original:  Vladimir Geshanov -->



function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a language!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		if(form.fieldname.options[ newIndex ].value!='') 
		window.location.assign( cururl ); 

	} 

}

function openCountry( form ) { 

	var newIndex = form.country.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a country!" ); 

	} else { 

		cururl = form.country.options[ newIndex ].value; 

		window.open( cururl, 'newwindow' );  

	} 

} 


