function openDir( form ) { 
	var newIndex = form.hs.selectedIndex; 
	if ( newIndex == 0 ) { 
		alert( "Please select a Handset!" ); 
	} else { 
		var p = form.hs.options[ newIndex ].value;
	window.location.assign("handset.asp?hs=" + p +"&net=all" )
	} 
}


function openDir1( form ) { 
	var newIndex1 = form.tariff.selectedIndex; 
	if ( newIndex1 == 0 ) { 
		alert( "Please select a Tariff!" ); 
	} else { 
		
		var p = form.tariff.options[ newIndex1 ].value;

	window.location.assign("tariff.asp?tariff=" + p)
	} 
}

function openDir2( form ) { 
	var newIndex2 = form.network.selectedIndex; 
	if ( newIndex2 == 0 ) { 
		alert( "Please select a Network!" ); 
	} else { 
		
		var p = form.network.options[ newIndex2 ].value;

	window.location.assign("network.asp?net=" + p)
	}
}

function openDir3( form ) { 
	var newIndex3 = form.linerental.selectedIndex; 
	if ( newIndex3 == 0 ) { 
		alert( "Please select a Line Rental!" ); 
	} else { 
		
		var p = form.linerental.options[ newIndex3 ].value;

	window.location.assign("monthlylinerental.asp?line=" + p)
	}
}

function openDir9( form ) { 
	var newIndex9 = form.incentive.selectedIndex; 
	if ( newIndex9 == 0 ) { 
		alert( "Please select an Incentive!" ); 
	} else { 
		
		var p = form.incentive.options[ newIndex9 ].value;

	window.location.assign("offer.asp?offer=" + p)
	}
}

function openDir10( form ) { 
	var newIndex10 = form.nettariff.selectedIndex; 
	if ( newIndex10 == 0 ) { 
		alert( "Please select a tariff!" ); 
	} else { 
		
		var p = form.nettariff.options[ newIndex10 ].value;

	window.location.assign("./" + p)
	}
}
function openDir11( form ) { 
	var newIndex11 = form.line.selectedIndex; 
	if ( newIndex11 == 0 ) { 
		alert( "Please select a Line Rental!" ); 
	} else { 
		
		var p = form.line.options[ newIndex11 ].value;

	window.location.assign("./" + p)
	}
}