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 confirm_delete_email(adres){
    if(window.confirm("Email zostanie usunięty. Czy chcesz kontynuować?"))
        document.location=adres;
    else window.status='Anulowano usunięcie';
    }

		   function confirm_dys_delete(dystrybutor_id, dystrybutor_nazwa) {
   		var czy_usunac = window.confirm("Czy na pewno chcesz usun±ć dystrybutora '"+dystrybutor_nazwa+"'?");
   		
   		if(czy_usunac) {
   			document.getElementById("del_dys").value = dystrybutor_id;
   			document.getElementById("del_form").submit();
   		}
   		
   		return false;
   }