function showModal(url, title)
{
	return window.showModalDialog('/ModalFrame.aspx?title='+escape(title)+'&url='+encodeURIComponent(url),'','center:1;resizable:1;dialogWidth:600px;dialogHeight:400px;status:0');
}

function showModal2(url, title, width, height)
{
	return window.showModalDialog('/ModalFrame.aspx?title='+escape(title)+'&url='+encodeURIComponent(url),'','center:on;resizable:on;status:off;scoll:off;dialogWidth:' + width + 'px;dialogHeight:' + height + 'px;');
}

function showModalPicture(url, title)
{
	return window.showModalDialog('/ModalFrame.aspx?title='+escape(title)+'&url='+encodeURIComponent(url),'','center:on;resizable:on;status:off;scoll:off;dialogWidth:408px;dialogHeight:496px;');
}
