function fPicturePopup
(	page
,	width
,	height
,	options )
{
	var top		 = (screen.height-height)/2;
	var left	 = (screen.width-width)/2;
//	if ( document.all )
//	{
//		showModalDialog(page, '', 'top:'+top+'px; left:'+left+'px; dialogHeight:'+height+'px; dialogWidth:'+width+'px; resizable:yes; status:no');
//	}
//	else
//	{
		popup	 = window.open(	page
				,	''
				,	'top='+top+',left='+left+',width='+width+',height='+height+','+options );
//	}
}

function m_ShowPicture
(	link )
{
	//Open a new message in a popup window
	fPicturePopup(link,635,625,'toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
}
