function autoDrop(){
	var URL = document.dropnav.drop.options[document.dropnav.drop.selectedIndex].value;
	if(URL != "0") {
		window.location.href = URL;
	}
}

function hi_over(id) {	
	thisid = 'img'+id;
	document.getElementById(thisid).style.borderColor = '#FFFFFF';
}

function hi_out(id) {	
	thisid = 'img'+id;
	document.getElementById(thisid).style.borderColor = '#80472a';
}

function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = 20;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { 
	win.window.focus(); 
	}
}