/* open popup window function */

function openWin(url,win,options) {

	var popupwin = window.open(url,win,options);

	if (!popupwin) { alert("The popup window has been blocked."); }
	else { popupwin.focus(); }
}

/* open popup window function */

//function changeSelectWidth(fieldname,fieldwidth) {

//	if (navigator.appName == 'Microsoft Internet Explorer') {
//		document.getElementById(fieldname).style.width=fieldwidth;
//		document.getElementById(fieldname).click();
//	}
//}

/* opens hyperlink in search select drop down */
function openSelectWin(fieldname) {

	var url = document.getElementById(fieldname).value
	document.getElementById(fieldname).selectedIndex=0;
	if (navigator.appName == 'Microsoft Internet Explorer') {  // In IE, shift focus to clear selection
		document.getElementById("q").focus();
	}
	window.open(url, '_top');
}


