$(function(){
	
        $('#tabs').tabs();

        // Dialog PHP			
				$('#dialogPHP').dialog({
					autoOpen: false,
					width: 600,
					height: 550,
					buttons: {
						"Cerrar": function() { 
							$(this).dialog("close"); 
						}
					}
				});
				
				// Dialog Link PHP
				$('#dialog_linkPHP').click(function(){
					$('#dialogPHP').dialog('open');
					return false;
				});


        // Dialog NET			
				$('#dialogNET').dialog({
					autoOpen: false,
					width: 800,
					height: 550,
					buttons: {
						"Cerrar": function() { 
							$(this).dialog("close"); 
						} 
					}
				});
				
				// Dialog Link NET
				$('#dialog_linkNET').click(function(){
					$('#dialogNET').dialog('open');
					return false;
				});



        // Dialog OC			
				$('#dialogOC').dialog({
					autoOpen: false,
					width: 800,
					height: 550,
					buttons: {
						"Cerrar": function() { 
							$(this).dialog("close"); 
						} 
					}
				});
				
				// Dialog Link NET
				$('#dialog_linkOC').click(function(){
					$('#dialogOC').dialog('open');
					return false;
				});
				
});
