function fnOpenWindowImage(strURL, strName, iWidth, iHeight){
	var objWin = window.open(strURL, strName, 'toolbar=false,status=false,width='+iWidth+',height='+iHeight+',resizable=false,left=100,top=100');
	/*objWin.document.write('<table cellpadding="0" cellspacing="0" style="border:0; height:100%; width:100%;"><tr><td style="text-align:center; vertical-align:middle;">');
	objWin.document.write('<img src="' + strURL + '" alt="" />');
	objWin.document.write('</td></tr></table>');*/
	objWin.focus();
}