function openContatti() {	
	
	
	var win = new Window('base', {
										className: 'base',
										title:'',
										zIndex:150, 
										opacity:1, 
										resizable:false,
										closable:true,
										minimizable:false,
										maximizable:false,
										draggable:false																										
									});
	var popup_w = 650;
	var popup_h = 460;
	win.setSize(popup_w,popup_h);
	win.setURL("contatti.html");
	win.setDestroyOnClose();
	
	var w 	= 0; 
	var h 	= 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		w = window.innerWidth;
		h = window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		w = document.documentElement.clientWidth;
		h = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		w = document.body.clientWidth;
		h = document.body.clientHeight;
	}
    var t = 35;//Math.floor((h-popup_h)/2);	
    var l = Math.floor((w-popup_w)/2);
	win.showCenter(true, t );	
	
	
}
WindowCloseKey.init();