
		$(function() {
			var ciel = "";
			
			// inicializacia
			$("#dialog").dialog({
				
				autoOpen:false,
				bgiframe: true,
				resizable: false,
				//height:250,
				modal: true,
				overlay: {
					backgroundColor: '#000',
					opacity: 0.5
						},
				buttons: {
					'Ok': function() {
						$(this).dialog('close');

						window.location.assign(getBaseURL()+ciel);
					},
					'Cancel': function() {
						$(this).dialog('close');
						
					}
				}
				});

			$(".confirm").click(function(){
				ciel = $(this).attr('href');
				var text = $(this).attr('alt');
				
				$("#dialog p").replaceWith(text);
				$("#dialog").dialog('open');
				return false;
			});
			
			$(".fconfirm").click(function(){
				ciel = $(this).parent().attr('action');
				var text = $(this).attr('alt');
				
				$("#dialog p").replaceWith(text);
				$("#dialog").fdialog('open');
				return false;
			});
		});	
