//####################################################################################
function showDetailPic(strObr)
{
	var wndDetailPic = window.open('showDetailPic.asp?obr=' + strObr, 'detailPicWnd', 'toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,width=770,height=544');
	wndDetailPic.focus();
}

function centerWnd()
{
	window.resizeTo(document.getElementById('detailPic').width + 15, document.getElementById('detailPic').height + 40);
	window.moveTo((screen.availWidth - document.getElementById('detailPic').width + 15) / 2, (screen.availHeight - document.getElementById('detailPic').height + 40) / 2);
}