function reveal_sub() 
{ 
window.document.s_mode.submit(); 
} 

function sssettings() 
{ 
window.document.cmk_set.submit(); 
} 

function klogger() 
{ 
window.document.k_logger.submit(); 
} 

function klogger_out() 
{ 
window.document.k_logger_out.submit(); 
} 

function folder_show() 
{ 
window.document.fold_show.submit(); 
} 

function launchpad(linkname,aliasname,un_exist) 
{ 
	if(un_exist == 1){
		window.document.launchscreen.LINK2OPEN.value = linkname; 
		window.document.launchscreen.ALIASLINK.value = aliasname; 
		window.document.launchscreen.submit(); 
	}
} 

function baby_un_pw(linkcgi,un_exist,linkname,aliasname,a_enc) 
{ 
	if(un_exist == 1){ 
	window.document.launchscreen.LINK2OPEN.value = linkname; 
	window.document.launchscreen.ALIASLINK.value = aliasname; 
	window.document.launchscreen.A_ENC.value = a_enc; 
	window.document.launchscreen.submit(); 
	} 
} 

function secret_sub() 
{ 
window.document.r_mode.submit(); 
} 


function n_link() 
{ 
window.document.quick_entry.submit(); 
} 

function f_switch() 
{ 
window.document.switch_folder.submit(); 
} 

function unpw_js(item_id) 
{ 
window.document.del_move_edit.UNPW_ID.value = item_id ; 
window.document.del_move_edit.submit(); 
} 

function url_edit_js(item_id) 
{ 
window.document.del_move_edit.URL_EDIT.value = item_id ; 
window.document.del_move_edit.submit(); 
} 

function c_boxes(cks) 
{ 

  a_box = 'true' ; 

  for (i = 0; i < cks.length; i++) 
   { 
   if (cks[i].checked != true) 
      { 
      a_box = 'false'; 
      break; 
      } 
   } 
  
  if (a_box == 'true') 
  { 
  for (i = 0; i < cks.length; i++) { 
  cks[i].checked = false ;  } 
   } 

  else 
  { 
  for (i = 0; i < cks.length; i++) { 
  cks[i].checked = true ; } 
   } 
} 

function spy_checkbox(checkbox) {
for (i = 0; i < checkbox.length; i++) {
checkbox[i].checked = true;
}
return "Select all";
}

function spy_uncheck(checkbox) {
for (i = 0; i < checkbox.length; i++) {
checkbox[i].checked = false;
}
return "Select none";
}
