function createDocument(pid, title, template_id){
	var title_user = prompt("Choose a title, click ok and then wait a few seconds for your new document to load.", title);
	
	if(title_user != "" && title_user != null){
		title = title_user;
		
		$j.blockUI({ message: '<h1>Loading...</h1>' }); 
				
		$j.get(
			"manager/index.php",
			{
				a: '112',
				id: '3',
				pid: pid,
				action: 'create',
				default_title: title,
				template: template_id
			},
			function(data){
				$j.unblockUI();
				window.location.href = "index.php?id=" + data;
				
			}
		);
		
	}
	

}

function deleteDocument(doc_id){

	var confirm_delete = confirm("DELETE: Are you sure!?");
	
	if(confirm_delete){
		
		
		$j.blockUI({ message: '<h1>Loading...</h1>' }); 
				
		$j.get(
			"manager/index.php",
			{
				a: '112',
				id: '3',
				doc_id: doc_id,
				action: 'delete'
			},
			function(data){
				$j.unblockUI();
				window.location.href = "index.php?id=" + data;
				
			}
		);
		
	}


}