function Popup(path,width,height)
{
	var  temp_image= new Image();
	var popupImage = window.open("","_blank","toolbar=no,scrollbars=no,status=no, resizable=no ,width="+width+", height="+height);

	popupImage.document.open();
	temp_image.src = path;
	
	popupImage.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style>body{margin:0px; background:#ECEBEC;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px; cursor:pointer}</style><title>PopUp</title></head><body onClick="top.close()" ><img src="'+temp_image.src+'"  alt="" /></body></html>');
	popupImage.document.close();

}


function Popup(path,width,height,opis)
{
	var  temp_image= new Image();
	var popupImage = window.open("","_blank","toolbar=no,scrollbars=no,status=no, resizable=no ,width="+width+", height="+(parseInt(height)+50));

	popupImage.document.open();
	temp_image.src = path;
	
	popupImage.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style>body{margin:0px; background:#FFFFFF;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:10px; cursor:pointer}</style><title>PopUp</title></head><body onClick="top.close()" ><img src="'+temp_image.src+'"  alt="" /><br /><br /><center><strong>'+opis+'</strong></center></body></html>');
	popupImage.document.close();

}



