

//function pWindow(w,h,wname){

function pWindow(w,h,wname){
var param = 'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+w +',height='+h;
var childwindow;
var valtarget;

childwindow = window.open('',wname,param);

childwindow.focus();

}

function SN_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

