function image_open(image_loc,img,name)
{

var HTML = '<html><style>body{margin:20px 20px 20px 20px; background:#EEF4FF;}</style><head><title>'+name+'</title></head><body onClick="top.close()" ><table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><tdalign="center" valign="middle"><img src="'+ image_loc +'"  alt=""  ></td></tr></table></body></html>';



var  temp_image= new Image();
temp_image.src = image_loc;

temp_image.onload=function draw(){var x=temp_image.width;var y=temp_image.height;var ok_x = x+40;var ok_y = y+40;popupImage = window.open('','_blank','toolbar=no,scrollbars=no,status=no, resizable=no ,width='+ok_x+', height='+ok_y);popupImage.document.write(HTML);};


}



function CheckForm(){
    document.frm.submit();
    }
