var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=600,width=800,scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes');
	if (window.focus) {newwindow.focus()}
}

function popupcode(url)
{
	newwindow=window.open(url,'name','height=400,width=500,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no');
	if (window.focus) {newwindow.focus()}
}

function menuChange(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


