function show(id)
{
	if( navigator.appName != 'Microsoft Internet Explorer' || window.opera || navigator.platform == 'MacPPC')
	{
		document.getElementById(id).style.top = '-21px';
	}
	else
	{
		document.getElementById(id).style.top = '-25px';
	}
	document.getElementById(id).style.visibility = 'visible';
}
function hide(id)
{
	document.getElementById(id).style.visibility = 'hidden';
}
var oNewWindow;

function popup_zoomview(id,co) {

	oNewWindow = window.open('/Zoom.aspx?pic='+id+'&co='+co, 'eb_zoom', 'width=1,height=1,resizable=no,scrollbars=no')

	if (window.focus){	
		oNewWindow.focus();
	}
}