<!--
function go_archive(url,action) {
var where_to = confirm("Are you sure? This will archive this item.");
if (where_to == true){
	go_there(url,action)
	}
return false;
}

function go_delete(url,action) {
var where_to = confirm("Are you sure? This item will be perminantly deleted.");
if (where_to == true){
	go_there(url,action)
	}
return false;
}

function go_there(url,action) {
document.client_pss_list.action=url;
document.client_pss_list.urlaction.value=action;
document.client_pss_list.submit();
return false;
}

function go_there_service(url,action) {
document.client_service_list.asp.action=url;
document.client_service_list.asp.urlaction.value=action;
document.client_service_list.asp.submit();
return false;
}

//-->