function windows(pop_up)
	{
			L = (screen.width - 760)/2;
			H = (screen.height - 550)/2;
			window.open(pop_up,'windows','height=500,width=760,menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,screenY=' + L + ',screenX=' + H + ',left=' + L + ',top=' + H );
	}

function riempi() { 
	if (window.screen) { 
		var w = screen.availWidth; 
		var h = screen.availHeight; 
		window.moveTo(0, 0); 
		window.resizeTo(w, h); 
	} 
} 

function lancia() {
	var w = screen.width;
	var h = screen.height;
	if(w >= "1280"){
		larghezza = 1050;
		altezza = 450;
	}else{
		larghezza = 700;
		altezza = 300;
	}
	var x = Math.round(w / 2) - Math.round(larghezza / 2);
	var y = Math.round(h / 2) - Math.round(altezza / 2);
	finestra = window.open ('sito/sito.htm', null, 'left=' + x + ',screenX=' + x + ',top=' + y + 'screenY=' + y +',width=' + larghezza + ',height=' + altezza );
}

function preferiti(){
	var url="http://www.inexodus.it/" 
	var titolo="InExodus - ONLUS" 
	if (document.all) {
		window.external.AddFavorite(url,titolo);
	}
} 

function paginaIniziale() {
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage('http://www.inexodus.it/');
}
