// JavaScript Document
// framework general 1.0
// Copyright (c) 2006-2010 Seven Communications.

var flag = null;



function OpenCollection(pagina,nome,w,h,scroll){
//var rid;

	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	
	
		
	setting = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',resizable='+'no'+',scrollbars='+scroll;
		
	previewWindow = window.open(pagina,nome,setting);
			
			if(previewWindow != null){
				previewWindow.focus();
				}
		
}

//function pulisci(){
	
//	}

function RisoluzioneMonitor(){
	larghezza = screen.width;
	lunghezza = screen.height;
	if (larghezza > 800){
		OpenCollection('collection.html?send=collection','',larghezza,lunghezza, 'no');
		//previewWindow.document.getElementById("opera").style.height = "382" ;
		
	}
	
	else{
		OpenCollection('collection.html?send=collection','','800','600','no');
		//previewWindow.document.getElementById("opera").style.height = "245" ;
		
		}
	

}

// HEIGHT DELL'ID OPERA DA SETTARE IN BASE ALLA RISOLUZIONE DEL MONITOR O FINESTRA POP_UP
	// 382px = 1204x768
	// 245px = 800x600
	// Apertura con finestra pop-up (800x600) = 270px

function WinOpera(){
		ris = screen.width;
		
		if (ris > 800){
			document.getElementById("opera").style.height = "357px";
			flag = 1024;
			}
			
		else{
			document.getElementById("opera").style.height = "245px";
			document.getElementById("film").style.top = "100px";
			flag = 800;
		}
	
	
	}
	
	
function sendgal(par){
	//sel = window.document.getElementById('ListaFoto').selectedIndex; SOLO IExplorer
	sel = window.document.box.listaFoto.selectedIndex;
	window.document.location.href = "gallery.html?send=" + par + "&s=" + sel ;
	
}



function LeggiStringa(tipo){
	query = String(document.location.search.substr(1));
	var arr = query.split("&");
	proID = arr[tipo].split("=");
	return proID[1];
}

function SelezioneCorrente(par){
	set = LeggiStringa(1);
	//document.getElementById("ListaFoto").options[set].selected = 1;
	window.document.box.listaFoto.options[set].selected = 1;
	}
	
	
function chiudi(){
	window.close();
	
	}	
	
function caricato(){
	alert('OK');
	
	}
