/* GUIDES FUNCTIONS */

// width=500 + scroll=0 -OR- width=516 + scroll=1 -AND- height=550 or height=500
function allZooms (url,name,width,height,scroll) {
	var options = "width=" + width + ",height=" + height + ",status=0,toolbar=0,menubar=0,location=0,scrollbars=" + scroll + ",resizable=0";
	window.open(url,name,options);
	return false;
}


/* navagate to - pulldown */
// form name="linkForm" - select onChange="navigateTo(this);" - close select, form
function navigateTo(s) { 
	window.top.location.href = s.options[s.selectedIndex].value;
}

/* END GUIDES FUNCTIONS */