<!-- Full Screen Popup
function popUpFullScreen(nameOfFile, paramters, anchorName){
	if (anchorName != " ")
	var urlToOpen = nameOfFile + "?" + paramters + "#" + anchorName;
else
	var urlToOpen = nameOfFile + "?" + paramters;
	var popUpWindow = window.open(urlToOpen,"", "width="+(screen.width-10)+",height="+(screen.height-120)+",left=0,top=0,toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=no");
}
// End -->

<!-- Select Menu Links
function MM_jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->

<!-- Begin Email Write Script
function writeemail(emailname, emaildomain, emailoption, emailtext, emailstyle) {
	if (emailtext == "" || emailtext == null) {
		emailtext = (emailname + '@' + emaildomain);
	}
	if (emailoption == "" || emailoption == null) {
		emailoption2 = ('');
	} else {
		emailoption2 = ('?' + emailoption);
	}
	if (emailstyle == "" || emailstyle == null) {
		emailstyle2 = ('');
	} else {
		emailstyle2 = (' style="' + emailstyle + '"');
	}
	emailadd=(emailname + '@' + emaildomain + emailoption2);
	return('<a href="mailto:' + emailadd + '"' + emailstyle2 +'>' + emailtext + '</a>');
}
//-->