
function browserCheck(){

	var browser = navigator.appName;
	if (navigator.appName != 'Microsoft Internet Explorer')
	{
		alert('Please note that this Site was developed and tested for MS Internet Explorer \n\n Display quality and functionality are not guaranteed when using other internet browsers');
		//close();
	}
}
function linkTo(box) {
if ((-1 < box.selectedIndex) && (box.options[box.selectedIndex].value.lastIndexOf('ap.org') != -1)) {
	document.forms[0].action = box.options[box.selectedIndex].value;
	document.forms[0].submit();
	return true;
	}
if ((-1 < box.selectedIndex) && (box.options[box.selectedIndex].value != 'nil')) {
	val = box.options[box.selectedIndex].value;
	if (val.lastIndexOf(',') != -1) {
		window.open ((val.substring(0,val.lastIndexOf(","))), (val.substring((val.lastIndexOf(",")+1) , val.length)));
	} else {
		window.open (val,'_top');
		}
	}
	return true;
}
