function openWIN(theURL,winName,features) {
 var wo ;
 wo = window.open(theURL,winName,features);
 wo.focus();
}

function openTname() {
	getURL = window.document.formTNAME.tname.selectedIndex;
	goURL = window.document.formTNAME.tname.options[getURL].value;
	features = 'status=yes,scrollbars=yes,resizable=yes,width=590,height=590';
	winName = 'tname';

	if (goURL == 'none') {
		return true;
	} else {
		var wo ;
		wo = window.open(goURL,winName,features);
		wo.focus();
	}
//	var wo ;
//	wo = window.open(goURL,winName,features);
//	wo.focus();
}