
function openDir( form ) { 
	var strHost;
	var cururl;
	var newIndex;
	
	strHost = location.host;
	
	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = "../" + form.fieldname.options[ newIndex ].value; 
		//cururl = strHost + "/corventis/www/" + cururl
		window.location.assign( cururl ); 

	} 

} 

function openwindow(numRegion)
{
	//window.open("http://demo.corventis.com:8080/crpm/admin","mywindow","menubar=1,resizable=1,width=950,height=550");
	switch(numRegion)
	{
	   case 1: 
	      //alert('Passed value' + numRegion + 'for NumRegion')
	      window.open("https://avivo-global.corventis.com/crpm/admin","mywindow","menubar=1,resizable=1,width=950,height=550,scrollbars=1");
	      break;
	   case 2: 
	      //alert('Passed value' + numRegion + 'for NumRegion')
	     
	      //window.open("https://avivo-pilot.corventis.com/crpm/admin","mywindow","menubar=1,resizable=1,width=950,height=550,scrollbars=1");
	      window.open("https://avivo-us.corventis.com/crpm/admin","mywindow","menubar=1,resizable=1,width=950,height=550,scrollbars=1");
	      break;
	   default:
	      //alert('Passed value' + numRegion + 'for NumRegion')
	      window.open("http://avivo-pilot.corventis.com/crpm/admin","mywindow","menubar=1,resizable=1,width=950,height=550,scrollbars=1");  
	      break;
	   
	}
	
}