// JavaScript Document


function openLANG(lang)	{
// alert('openLANG()='+lang);
    var _href= ("popup_language.php?lang="+lang);
	var _w = '800';
	var _h = '700';
	var _l = screen.width/5;
	var _t = screen.height/8
	
	var _features ='width='+_w+',height='+_h+',resizable=yes,scrollbars=yes,left='+_l+',top='+_t;
    _popUp= window.open (_href,'laguagePopUp', _features);
// 	_popUp.moveTo(550, 200);
    _popUp.focus();
	var _features =',location=no,titlebar=no';
	
}

function openVetrine(lang){
 	if (!lang )  lang="ITA";
 	var _href= ("gallery_vetrine.php?lang="+lang+"&archivio=img_vetrine");
	var _w = '900';
	var _h = '700';
	var _l = screen.width/5;
	var _t = screen.height/8
	
	var _features ='width='+_w+',height='+_h+',resizable=yes,scrollbars=yes,left='+_l+',top='+_t;
		_features =',location=no,titlebar=no';
    _popUp= window.open (_href,'vetrinePopUp', _features);
    _popUp.focus();
	
}

function openCollection(lang){
 	if (!lang )  lang="ITA";
 	var _href= ("gusella_collection.php?lang="+lang+"&archivio=img_vetrine");
	var _w = '1000';
	var _h = '700';
	var _l = screen.width/5;
	var _t = screen.height/8
	
	var _features ='width='+_w+',height='+_h+',resizable=yes,scrollbars=yes,left='+_l+',top='+_t;
		_features +=',location=no,titlebar=no';
    _popUp= window.open (_href,'CollectionPopUp', _features);
    _popUp.focus();
	
}
