
var id_show = '';

function hide_pint(object) {
	el_tmp = Ext.get(object);

	el_tmp.slideOut('t', {
		easing: 'easeOut',
		duration: 1.2,
		remove: false,
		useDisplay: true
	});
/**/
/*
	el_tmp.puff({
		easing: 'easeOut',
		duration: .5,
		remove: false,
		useDisplay: true
	});
*/	
/*
	el_tmp.switchOff({
		easing: 'easeIn',
		duration: .3,
		remove: false,
		useDisplay: true
	});
*/
/*
	el_tmp.fadeOut({
		endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
		easing: 'easeOut',
		duration: .8,
		remove: false,
		useDisplay: true
	});
*/
/*
el_tmp.ghost('b', {
    easing: 'easeOut',
    duration: .8,
    remove: false,
    useDisplay: true
});
*/
/*	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(object).style.visibility = 'hidden';
		document.getElementById(object).style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
			document.hideshow.visibility = 'hidden';
		}
		else { // IE 4
			document.all.hideshow.style.visibility = 'hidden';
		}
	}
*/
}

function show_pint(object) {
	if (id_show != '') {hide_pint(id_show);}
	if (id_show != object) {
		id_show = object;
		el_tmp = Ext.get(object);
		el_tmp.slideIn('t', {easing: 'easeOut',duration: .8,remove: false,useDisplay: true});
	}
	else {id_show = '';}
}


