function pop_img(imgsrc, dimx, dimy)
{
	var w, attr;
	
  staryHosting = "kpria";
	novyHosting = "kpria.cz";
	staraDomena = "hosting.navigo.cz";
	novaDomena = "hosting.omegadesign.cz";
	
  imgsrc = imgsrc.replace(staraDomena+'/'+staryHosting, novaDomena+'/'+novyHosting+'/httpdocs');
  
	attr = 'toolbar=0, location=0, status=0, menubar=0, ' +
		'width=' + (dimx+30) + ', height=' + (dimy+30) +
		'scrollbars=1, resizable=1';
	w = window.open('', '', attr);
	w.focus();
	w.document.clear();
	w.document.write('<html><head><title>KRÁLOVOPOLSKÁ RIA, a.s.</title></head>' +
		'<body bgcolor="#ffffff" onclick="javascript:window.close()">' +
		'<div align="center"><img src="' + imgsrc + 
		'" alt="Kliknutím na obrázek můžete zavřít okno"></div></body></html>'
		);
	w.document.close();
}
