function radio_button_click(higlight_id, highlight_type){
	
	$("#"+highlight_type+"_selector").load("update_database.php", {id:higlight_id, type:highlight_type});
	
}

function openWindow(path,window_name,width,height,resizeable,directories,loc,menubar,status,titlebar,toolbar,scrollbar) {

      var myBars = '';

      ( toolbar )    ? myBars += 'toolbar=yes,'           : myBars += 'toolbar=no,';
      ( loc )        ? myBars += 'location=yes,'          : myBars += 'location=no,';
      ( status )     ? myBars += 'status=yes,'            : myBars += 'status=no,';
      ( menubar )    ? myBars += 'menubar=yes,'           : myBars += 'menubar=no,';
      ( scrollbar )  ? myBars += 'scrollbars=yes,'        : myBars += 'scrollbars=no,';
      ( resizeable ) ? myBars += 'resizable=yes,'         : myBars += 'resizable=no,';
      ( width )      ? myBars += 'width=' + width + ','   : myBars += 'width=' + 800 + ',';
      ( height )     ? myBars += 'height=' + height + ',' : myBars += 'height=' + 500 + ',';

      myOptions = "top=50,left=50";

      window.open(path,window_name,myBars + ',' + myOptions);

   } // end function openWindow