function immagini(str) {
	searchWin = window.open(str,'immagini','scrollbars=yes,resizable=yes,width=820,height=620,status=no,location=no,toolbar=no');
	//searchWin.refer = self;
}

function show_hide(oggetto){
	var obj = document.getElementById(oggetto);
	if ( obj != null ){
		var status = obj.style.display;
		if ( status == 'block' ){
			obj.style.display = 'none';
		}else{
			obj.style.display = 'block';
		}
	}
}

function open_window_credits() {
	window.open("credits.htm", null, "height=200,width=300,scrollbars=no,resizable=no,status=no,toolbar=no,menubar=no,location=no");
}