var thumb2 = null;

function show_title2(which,e) {
	thumb2 = document.getElementById('thumb2');
        
	if ( thumb2 && thumb2.style.visibility == 'hidden' ) {
		thumb2.style.left       = e.pageX ? pageXOffset + e.clientX + 10 : document.body.scrollLeft + e.x + 10;
		thumb2.style.top        = e.pageY ? pageYOffset + e.clientY : document.body.scrollTop  + e.y;
		thumb2.style.visibility = 'visible';
		thumb2.innerHTML        = '<img src="' + which + '">';
	}
}

function close_title2() {
	thumb2 = document.getElementById('thumb2');
	if( thumb2 )
		thumb2.style.visibility = 'hidden';
}
