function openMain(strurl) {
	grandezza=screen.width-10;
	altezza=screen.height-56;
	//settaggio='top=0,left=0,statusbar,height='+altezza+', width='+grandezza;
	settaggio='fullscreen,scrollbars';
 	newWin = window.open(strurl, 'Bulgari', settaggio);
	newWin.moveTo(0,0);
	newWin.focus();
}
function chiudi(){
	window.parent.close();
}
function openpop(strurl,strW,strH,strScroll) {
	if (strW == "" || strH =="" ){
		StrParam = "" ;
	} else {
		StrParam = "width="+strW+",height="+strH+",scrollbars=no,toolbar=no";
	}
	if (strScroll == ""){
		StrParam = StrParam+",toollbar=no" ;
	} else {
		StrParam = "width="+strW+",height="+strH+",scrollbars="+strScroll+",toolbar=no";
	}
	
	window.open(strurl, '', StrParam);		
}

function openTourbillon() {
	openpop ("minisiti/tourbillon.html",1000,700,0);
}

function openRepetition() {
	openpop ("minisiti/repetition.html",1000,700,0);
}

// CELEBRATE 125

function openCelebrate(lang) {
	//grandezza=screen.width-10;
	//altezza=screen.height-56;
	//settaggio='top=0,left=0,statusbar,height='+altezza+', width='+grandezza;
	//settaggio='fullscreen,scrollbars';
	settaggio='toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes';
 	newWin = window.open("125anniversary/index.html?lang=" + lang, 'Celebrate', settaggio);
	//newWin.moveTo(0,0);
	//newWin.focus();
}