/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* FUNZIONE GO TO VIRTUAL CATALOGUE */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */

function view_virtual_catalog(cat_name){
	
	if(cat_name=="tuning")
	{
		window.open ("./virtuacatalogue/virt_cat_tuning/virtual_catalog.html",
"mywindow","menubar=1,resizable=1,width=800,height=600"); 

	}
	else
	{
		window.open ("./virtuacatalogue/virt_cat_racing/virtual_catalog.html",
"mywindow","menubar=1,resizable=1,width=800,height=600");
	}
	
}
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* FINE - FUNZIONE GO TO VIRTUAL CATALOGUE */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */

		  
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* FUNZIONE PREVIEW ROAD WHEELS ARCHIVIO */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
  function preview_wheels(wheels,wheels_image){
	  var img_wheels=document.getElementById("img_wheels");
	  var name_wheels=document.getElementById("wheels_name");

  		img_wheels.src="phpthumb/phpThumb.php?src=../images/content/choose-products/choose-road_wheels/road_wheels_archive/"+wheels_image+"&w=125";
		img_wheels.alt="MOMO "+wheels;
		
		name_wheels.innerHTML=wheels;
  }
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* END - FUNZIONE PREVIEW ROAD WHEELS ARCHIVIO */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* START - VISUALIZZARE LE IMMAGINI PRINCIPALI DELLA GALLERY ROAD WHEELS */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */

/* variabile path immagine */
var path_image="";
/* variabile elemento contentitore dell'immagine */
var el_variant="";

	/* funzione visualizzazione variante di colore del prodotto */
	function view_variant(path_image,path_id_cat,id_cat,id_subcat,product_id,lang,prod_name)
	{
		/* seleziono l'immagine del nome del prodotto */
		var imm_name=document.getElementById("prod_name");

		/* variabile che contiene informazioni varie sul browser.... incluso numero della versione */
		var browser_info=navigator.appVersion;
		
			/* cerco browser internet explorer 6.0 */
			var browser_info_ms_6=browser_info.search("MSIE 6.0");
			/* cerco browser internet explorer 5.55 */
			var browser_info_ms_5=browser_info.search("MSIE 5.5");
		
		/* se il browser è internet explorer 6.0 o 5.55 allora gestisco i bordi delle preview attraverso javascript */
		if(browser_info_ms_6!= -1 || browser_info_ms_5!= -1)
			{
				imm_name.style.backgroundImage="none";
				imm_name.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+path_id_cat+".png,sizingMethod=scale,enabled=enabled)";
			}
			else
			{
				imm_name.style.backgroundImage="url("+path_id_cat+".png)";
			}
		
		
		/* link alla collection */
		var link_collection=document.getElementById("link_collection");
			
			link_collection.href="./products.php?id_cat="+id_cat+"&id_subcat="+id_subcat+"&id_product="+product_id+"&l="+lang+"";
			link_collection.innerHTML=prod_name+" - collection &gt;";
		
		/* seleziono il contenitore per l'immagine */
		var imm=document.images["imm_prod"];
		/* carico l'immagine */
		imm.src="phpthumb/phpThumb.php?src=../"+path_image+"&w=513&h=421&q=100";
	}

/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* END - VISUALIZZARE LE IMMAGINI PRINCIPALI DELLA GALLERY ROAD WHEELS */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* START - PREVIEW DEL PRODOTTO SELEZIONATO */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */

	/* funzione che visualizza l'anteprima del prodotto */
	function view_preview(src_path,alt){
		
		var img_preview=document.getElementById("img_preview");
		
		img_preview.src="phpthumb/phpThumb.php?src=../"+src_path+"&w=135&h=123&q=111";
		img_preview.style.display="block";
	}

	/* funzione che nasconde l'anteprima del prodotto */
	function hide_preview(){
		
		var img_preview=document.getElementById("img_preview");
		
		img_preview.style.display="none";
	}

/* --------------------------------------------------------------------------------------------------------------------------------------------------- */
/* END - PREVIEW DEL PRODOTTO SELEZIONATO */
/* --------------------------------------------------------------------------------------------------------------------------------------------------- */

