// JavaScript Document

function blind_direction(){

	// If the banner isn't showing, then show it, else close it.
	if(document.getElementById('myWrapper').style.display == 'none'){
		new Effect.BlindDown('myWrapper');
	}
	else{
		new Effect.BlindUp('myWrapper');	
	}
}

function goToPage(dd) {
var ind = dd.selectedIndex;
if (ind == 0) { return; }
var url = dd.options[ind].value
document.location=url;
}