function openPicWin(pFileName,pWinName,pWidth,pHeight,pTop,pLeft)
{
	var isNS = (document.layers) ? true : false;
				
	if (isNS) pHeight = pHeight + 19;
	
	eval("allSettings = 'width="+pWidth+",height="+pHeight+",menubar=yes,scrollbars=no,status=yes,resizable=yes'");
	
	w=window.open(pFileName,pWinName,allSettings);
	w.moveTo(pTop,pLeft);
	w.window.focus();
}	


// Contact - Map
function jumpMenu(targ,selObj,restore)
{ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
// Contact - Map
function jumpMenuNewWindow(selObj)
{ //v3.0
  var target = selObj.options[selObj.selectedIndex].value;
  if(target != "") {
  window.open(target);
  }
}
