function selchange(sValue) {
	if (sValue!=0) {
		if (sValue.indexOf('/info/')==-1) {
			location.href=sValue;
		} else {
			w=window.open(sValue,'wInfo');
			w.focus();		
		}
	} else {
		alert ('Coming Soon!');	
	}
}

