function confirmDelete(gotopath,name) { 
  var c = confirm('Are you sure you want to DELETE '+name+'?'); 
  if (c) document.location= gotopath; 
} 
function confirmAdd(gotopath,name) { 
  var c = confirm('Are you sure you want to ADD '+name+'?'); 
  if (c) document.location= gotopath; 
} 
function ActivateMeet(gotopath,name) { 
  var c = confirm('Activate '+name+'?'); 
  if (c) document.location= 'admin-process.php?process=activate_meet&'+gotopath; 
} 
function DeActivateMeet(gotopath,name) { 
  var c = confirm('DeActivate '+name+'?'); 
  if (c) document.location= 'admin-process.php?process=deactivate_meet&'+gotopath; 
} 
function ActivateEvent(gotopath,name) { 
  var c = confirm('Activate '+name+'?'); 
  if (c) document.location= 'admin-process.php?process=activate_event&'+gotopath; 
} 
function DeActivateEvent(gotopath,name) { 
  var c = confirm('DeActivate '+name+'?'); 
  if (c) document.location= 'admin-process.php?process=deactivate_event&'+gotopath; 
} 
function AutoEntryUnlock(gotopath, name) { 
  var c = confirm('Unlock Auto Entry for: '+name+'?'); 
  if (c) document.location= 'admin-process.php?process=auto_entry_unlock_main&'+gotopath; 
} 
function AutoEntryLock(gotopath, name) { 
  var c = confirm('Lock Auto Entry for: '+name+'?'); 
  if (c) document.location= 'admin-process.php?process=auto_entry_lock_main&'+gotopath; 
} 
function hit(id) {
	if(id) document.location='user-process.php?process=adv_hit&id='+id; 
} 