function enlargeImage(Url,width,height){
var enlarged = new Image(); enlarged.src = ''+Url+''
var prevW = window.open
("","newWin","width="+width+",height="+height+",top=140,left=200,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=yes");
prevW.document.write('<html><head><title>Preview Image</title></head><body><img style="border: 0px; padding: 0px;" src="'+Url+'"  height="'+height+'"/></body></html>');
}
