

function primer_producto(id)
{
	new Ajax.Updater('primer_producto', '/comparativa/index1.php?id='+id, { method: 'get' });		 	
} 

function segundo_producto(id)
{
	new Ajax.Updater('segundo_producto', '/comparativa/index2.php?id='+id, { method: 'get' });		 	
} 

function cargar_modelo_1(id)
{
	
new Ajax.Request('/comparativa/cargar_productos.php?id_1='+id, { method: 'get' });	
}

function cargar_modelo_2(id)
{
new Ajax.Request('/comparativa/cargar_productos.php?id_2='+id, { method: 'get' });	
}

function primero()
{
	new Ajax.Updater('primer_producto', '/comparativa/index1.php', { method: 'get' });		 	
} 

function segundo()
{
	new Ajax.Updater('segundo_producto', '/comparativa/index2.php', { method: 'get' });		 	
} 


