// JavaScript Document


$(document).ready(function(){
	$("#add")		.dialog({
						autoOpen:false,
						width:400,
						height:450,
						draggable:false,
						resizable:false,
						modal:true,
						buttons: {'close':function(){$(this).dialog('close');}}
					});
	$("#project")	.dialog({
						autoOpen:false,
						width:650,
						height:600,
						draggable:false,
						resizable:false,
						modal:true,
						buttons: {'close':function(){$(this).dialog('close');}}
					});
});

function openAdd(id,title,color){
	$.ajax({
		url:'/calls/ajax_add.php',
		type: 'POST',
		data: {id:id},
		success: function(html){
			
			$(".ui-dialog")	.css("background-color",color);
			
			$("#add")	.html(html)
						.dialog("option","title",title)
						.dialog("open");
		}
	});
}

function openProject(id,title){
	$.ajax({
		url:'/calls/ajax_project.php',
		type: 'POST',
		data: {id:id},
		success: function(html){
			
			$(".ui-dialog")	.css("background-color","#FFFFFF");
			
			$("#project")	.html(html)
							.dialog("option","title",title)
							.dialog("open");
		}
	});
}
