/*
 Scripts genéricos para la tienda
 palos de golf: drivers, hierros, híbridos, putters, maderas, wedges
 */

// corrección tildes en div llamados desde jquery
$.ajaxSetup({
    'beforeSend' : function(xhr) {
        xhr.overrideMimeType('text/html; charset=ISO-8859-1');
    }
});
// /

 //Direcciones
$(function() {
	$( "#direccionFormDialog" ).dialog(
		{  autoOpen: false, show: "slide", hide: "fade", modal: true,position: 'center', width: 600		}//conf dialog
	);
});
function direccionFormDialog_Show(idcl) { //lamarla con onclick
	$("#direccionFormDialog").load("/inc/funciones_aj.php",{ funcion:"direccionForm" , idcl:idcl } ) 
	$( "#direccionFormDialog" ).dialog( "open" );
	return false;
}

//


//

function privacidad_Show() { //lamarla con onclick
		$( "#privacidad" ).dialog(
			{  autoOpen: false, show: "slide", hide: "fade", modal: true,position: 'top', width: 600, height: 450, 	
				buttons: { 	
					Cerrar: function() {$( this ).dialog( "close" ); } 
				}//buttons 
			}//conf dialog
		);

	$("#privacidad").load("/politica_privacidad.html",{  } ) 
	$( "#privacidad" ).dialog( "open" );
	return false;
}

function terminos_Show() { //lamarla con onclick
		$( "#terminos" ).dialog(
			{  autoOpen: false, show: "slide", hide: "fade", modal: true,position: 'top', width: 600, height: 450, 	
				buttons: { 	
					Cerrar: function() {$( this ).dialog( "close" ); } 
				}//buttons 
			}//conf dialog
		);

	$("#terminos").load("/condiciones_contratacion.php",{  } ) 
	$( "#terminos" ).dialog( "open" );
	return false;
}

