
// Apre finestra per virtual tour
function OpenVirtualTour(sLink, iW, iH, sTitle){	
	window.open( "virtual/"+ sLink, "_tour_"+ sTitle, "toolbar=no,width="+ iW +",height="+ iH +",directories=no,menubar=no,scrollbars=auto,resizable=yes");
}

// Apre una finestra con l'immagine 
function OpenScreeShot(sFile, iW, iH){
	window.open( "img/"+ sFile,"_fotoBig_", "toolbar=no,width="+ iW +",height="+ iH +",directories=no,menubar=no,scrollbars=auto,resizable=yes");
}

// Apre una gallery fotografica
function OpenPhotoGallery(sFile, iW, iH){
	window.open( "gallery/"+ sFile,"_gallery_", "toolbar=no,width="+ iW +",height="+ iH +",directories=no,menubar=no,scrollbars=auto,resizable=yes");
}


// Apre finestra per per download
function PrdDownStart(sFile, sProd, iW, iH, sTitle, sType){	
	if (typeof(sTitle) == 'undefined') { var sTitle = '_download_'; }
	if (typeof(sType) == 'undefined') { var sType = 'doc'; }
	
	window.open( "download.php?sF="+ sFile +"&sP="+ sProd +"&sT="+ sType, "_tour_"+ sTitle, "toolbar=no,width="+ iW +",height="+ iH +",directories=no,menubar=no,scrollbars=auto,resizable=yes");
}

// Apre finestra per download dal dettaglio prodotti
function PrdDetailDownStart(sFile, sProd, iW, iH, sTitle, sType){	
	if (typeof(sTitle) == 'undefined') { var sTitle = '_download_'; }
	if (typeof(sType) == 'undefined') { var sType = 'doc'; }
	
	window.open( "../download.php?sF="+ sFile +"&sP="+ sProd +"&sT="+ sType, "_tour_"+ sTitle, "toolbar=no,width="+ iW +",height="+ iH +",directories=no,menubar=no,scrollbars=auto,resizable=yes");
}