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


// ----------------------- OPEN POPUP WINDOWS -----------------------//
function open_window(link, title, width, height){
	//	alert(link+', '+title);
	var newWin = window.open(link, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height);
	newWin.focus();
}
function close_window(){
	window.close();
}