var win = null;
function OpenImage(url,w,h,txt)
{
	var scroll = 0;
	w = w +20;
	h = h +20;
	//if (txt == ' '){h = h - 80;}
	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	if(screen.height > h || screen.width > w) { scroll = 1; }
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,status=no';
	win = window.open('','Image',settings);
	if(win.window.focus){win.window.focus();}
	var doc = win.document;
	if (txt == ' ')
	{
		doc.write("<html><body style='margin:0; padding:10px; overflow-y:auto'><img src='" + url + "'></body></html>");
	}else
	{
		doc.write("<html><body style='margin:0; padding:10px; overflow-y:auto'><img src='" + url + "'><div style='border-top:1px solid #9b9b9b; font-family:Arial; font-size:12px; margin-top:10px; padding:7px 0 0 0; width:99.9%'>" + txt + "</div></body></html>");
	}

	doc.close();
}
