	function popWin(location, name, width, height) {
		window.open (location, name, 'toolbar=no,menubar=no,scrollbars=yes,fullscreen=no,resizable=yes,width=' + width + ',height=' + height + '');
	}

	function openScoreborad(scName, location, pdf, name, width, height) {
		window.open (pdf, name, 'toolbar=no,menubar=no,scrollbars=yes,fullscreen=no,resizable=yes,width=' + width + ',height=' + height + '');
		location = location;
	}

function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 
	var newValue = form.fieldname.options[newIndex].value;

	
	switch(newValue)
	{
		case  "NSW" : alert( "please select one of the NSW stores below" ); return;
		
		case  "WA" : alert("please select one of the WA stores below" ); return;
		
		case  "NZ" : alert( "please select one of the NZ stores below" ); return;
		
		case  "VIC" : alert( "please select one of the VIC stores below" ); return;
		
		case  "QLD" : alert( "please select one of the QLD stores below" ); return;
	}
	
	

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		window.open(cururl,"","" ); 

	} 

} 


