// Auto-activate pulldown menu navigation
function autoNavMenu(targ,selObj,restore) {
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function showPic (whichpic, text) { 
	if (document.getElementById) { 
		document.getElementById('base').src = whichpic.href; 
		document.getElementById('base_text').value = text;
		return false; 
	} else { 
		return true; 
	} 
}

/// pop-up ///
function popUp(strURL,strType,strWidth,strHeight) {
var strOptions="";
if (strType=="redScroll") strOptions="status,resizable,scrollbars,height="+strHeight+",width="+strWidth;
if (strType=="redNoScroll") strOptions="status,resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixNoScroll") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="fixScroll") strOptions="status,scrollbars,height="+strHeight+",width="+strWidth;
if (strType=="padrao") strOptions="status,toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
newWin = window.open(strURL, strType, strOptions);
newWin.focus();
//USO
//<a href="pagina.htm" onclick="popUp(this.href,'redScroll',600,450);return false;">
}
