function loadModal(containerWidth, containerHeight) {
	document.getElementById("dialog").style.display="block";
	
	$("#dialog").dialog({
		width: containerWidth,
		height: containerHeight,		
		modal: true,
		resizable: false,		
		show: 'blind',	
		hide: 'fold',		
		overlay: {
			opacity: 0.6,	
			background: "black"			
		}
	});
}