function OpenPopup(contentid, width, height)
{
	var win = window.open('Popup.aspx?ContentID=' + contentid, 'popup', 'width=' + width + ', height=' + height + ', scrollbars=yes');
	win.focus();
}