function popupImage(myimage,w,h,title) 
{

var html = " <!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"+
		"<html xmlns=\"http://www.w3.org/1999/xhtml\">"+
 		"<html><head><title>" + title + " - RBLED</title>" +
		"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">" +
		"</head><body style=\"margin:0px;padding:10px\">" +
		"<a href=\"javascript:window.close()\">" +
		"<img src='" + myimage + "' width='"+w+"' height='"+h+"' border='0' alt='RBLED'>" +
		"</a></body></html>";
				
		 var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		 var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		 h += 20;
		 w += 20;
		var settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,noresizable';
		 var popup=window.open('','_blank',settings);
		 popup.document.open();
		 popup.document.write(html);
		 popup.focus();
		 popup.document.close()
		 
		 
} 