var browse = {};
	
	browse.dlt = function(id,pagenumber){
		if(confirm("Are you sure you want to delete this Listing?")){
			location.href ="brows.php?page_id=17&act=deletelist&id="+id; 
		}
	}
	
	browse.assignList = function(list_id,pagenumber,bid_id){
		if(confirm("Are you sure you want to assign this List?")){
			location.href ="brows.php?page_id=17&act=listAssigned&list_id="+list_id+"&bid_id="+bid_id; 
		}
	}
	
	browse.deleteAssignment = function(id,pagenumber){
		if(confirm("Are you sure you want to delete this assigned job?")){
			location.href ="brows.php?page_id=17&act=deleteAssignment&id="+id; 
		}
	}
