<!--
function changeImages(namer,textImage) {
		namerOver = "gfx/" + textImage;
		
	if (document.images && (preloadFlag == true)) {
		document[changeImages.arguments[0]].src = namerOver;
		}
}

window.focus();

function HME_openWindow(theURL,winName,features) { 

  var cur_window = window.open(theURL,winName,features);

  cur_window.focus();
}

function HME_openWindowSized(theURL,winName,features,percen,upperLim) { 

  var win_percentage = ((screen.width * percen)/100);
  if (win_percentage > upperLim) {
  	win_percentage = upperLim; }
  var win_left = ",left=" + (screen.width - win_percentage)/2;
  var win_width = ",width=" + win_percentage;
  var win_features = features + win_left + win_width;
  var cur_window = window.open(theURL,winName,win_features);

  cur_window.focus();
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		if (typeof(document.HME) == 'undefined') {
			document.HME = new Object();
		}
		document.HME.loadedImages = new Array();
		var argLength = preloadImages.arguments.length;
		for(arg=0;arg<argLength;arg++) {
			document.HME.loadedImages[arg] = new Image();
			document.HME.loadedImages[arg].src = preloadImages.arguments[arg];
			preloadFlag = true;
			}
		}
	}

// Bill Weinman's Simple Javascript Menu (c) 1997 Bill Weinman
// http://www.weinman.com/wew/js/
// you are free to use this code, but please leave my notice here.
function jump(thisform) {
	var myindex = thisform.destination.selectedIndex;
	var url     = thisform.destination.options[myindex].value;
	if(!url) { return }                 // do nothing if there's no url
	else     { window.location = url }  // else, hop to it!
}

function MM_openBrWindow(theURL,winName,features) { //v2.0

  var cur_window = window.open(theURL,winName,features);

  cur_window.focus();

}
// -->
