function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

}

function openpopup(popurl){
var winpops=window.open(popurl,"","width=500,height=400,status,scrollbars,resizable")
}
