
	function _Dialog(ID, Title, Width, Height, Resizable){
		$('#' + ID).dialog({
							'bgiframe'	: true,
							'title'		: Title,
							'width'		: Width,
							'minWidth'	: Width,							
							'height'	: Height,
							'minHeight'	: Height,
							'resizable'	: Resizable,
							'modal'		: true,							
							'show'		: 'blind',
							'hide'		: 'blind',
							'close'		: function(event){
												$(this).dialog('destroy');		
												}
							})
						.css({
							 'border'	:	'1px #CCC solid'
							 });
		}
