dom = (document.getElementById)? true : false;
isOpera = (window.opera)? true : false;
isOpera7 = (isOpera && document.readyState)? true : false;
sim = new Image();
sim.src = 'pix/load.gif';

function Show(path, obj) {
	if ( !( isOpera && !isOpera7 ) && dom) {
		if(document.getElementById('show_div'))	{
			document.image.src = sim.src;
			im = new Image();
			im.src = path;
			document.image.src = im.src;
                        document.getElementById('show_div').style.top = document.body.scrollTop+55;
                        document.getElementById('show_div').style.display = 'block';
		}
		return false;
	}
	return true;
}

function Hide() {
	if(document.getElementById('show_div')) document.getElementById('show_div').style.display = "none";
        if(document.getElementById('show_div_shadow')) document.getElementById('show_div_shadow').style.display = 'none';
	return false;
}

//refresh=setInterval('document.getElementById("show_div").style.top = document.body.scrollTop+105;',20);
