/*------------------------------------------------------------------------------ 
 * scripts web site raycon.com.pe front end.
 * Author: by Marco Torres - mimanzana.com
--------------------------------------------------------------------------------/

/*-------------------------------------------------------------------------------
 * jQuery cotizar end raycon.com.pe
 * Created: septiembre 30 2011
-------------------------------------------------------------------------------*/
$(document).ready(function() {
  
});    
/*-------------------------------------------------------------------------------
 * script para cotizar  
 * Created: septiembre 30 2011
 * Notes: muy importante para el pedido.
-------------------------------------------------------------------------------*/
function cotizarPrograma(n_id_producto){
   $("#content_cotiza").load("../app/process/procesos_web.php", 
       {
           load_cotiza: 1, 
           n_id_producto:n_id_producto
       },function() {  
       jQuery('a[alt*=facebox]').facebox();
       });
   }
/*-------------------------------------------------------------------------------
 * script para eliminar programa  
 * Created: octubre 3 2011
-------------------------------------------------------------------------------*/   
function eliminarPrograma(n_id_producto){
   $("#content_cotiza").load("../app/process/procesos_web.php", 
       {
           remove_cotiza_producto: 1, 
           n_id_producto:n_id_producto
       });
   }    
/*-------------------------------------------------------------------------------
 * script para limnpiar cotizacion  
 * Created: octubre 3 2011
-------------------------------------------------------------------------------*/   
function limpiarCotizacion(){
   
   $("#content_cotiza").load("../app/process/procesos_web.php", 
       {
           limpiar_cotizacion: 1  
       });
       
     
}   


