function popUp(url,imgWidth,imgHeight)
{
	
	var Popup = '';	
	var winH = imgHeight + 80;
	var winW = imgWidth + 20;

	Popup = window.open("", 'Popup', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + winW + ', height=' + winH + '');
	Popup.document.close();
	Popup.document.open();
	Popup.document.write('<html><body style="margin: 0px;"><table height="100%" align="center" text-align="center" cellpadding="0" cellspacing="0"><tr><td><img style="vertical-align: middle" src=' + url + ' width=' + imgWidth + ' height=' + imgHeight + ' /></td></tr></table></body></html>');
	Popup.resizeTo(winW,winH);
	Popup.focus();
	Popup.document.close();
	
}
