function foto(obr,idp) {
	asirka = screen.availWidth;
	avyska = screen.availHeight * 0.95;
	x = 0;
	y = 0; // screen.height * 0.15;

	window.open("/foto.php?obrazok="+obr+"&produkt="+idp, "", "left="+x+",top="+y+",width="+asirka+",height="+avyska+",scrollbars=yes,resizable=yes");
}
function fotoedit(obr,idp,prip) {
	asirka = 600; //screen.availWidth;
	avyska = 500; // screen.availHeight * 0.92;
	x = screen.width - asirka * 1.02;
	y = 0; // screen.height * 0.15;

	window.open("/_edit/foto.php?obrazok="+obr+"&produkt="+idp+"&prip="+prip, "", "left="+x+",top="+y+",width="+asirka+",height="+avyska+",scrollbars=yes,resizable=yes");
}
function mapa(url) {

	asirka = 525; //screen.availWidth;
	avyska = screen.availHeight * 0.92;
	x = screen.width - asirka * 1.02;
	y = 0; // screen.height * 0.15;
	
	window.open("/mapa.php?url="+url, "", "left="+x+",top="+y+",width="+asirka+",height="+avyska+",scrollbars=yes,resizable=yes");
}
function zoom(id,zoomw,zoomh,zoompath,zoomtitle,text){ 

	asirka = 625; //screen.availWidth;
	avyska = screen.availHeight * 0.92;

	x = screen.width - asirka * 1.02;
	y = 0; // screen.height * 0.15;
	
	zoom_console = window.open("",id,"left="+x+",top="+y+",width="+asirka+",height="+avyska+",scrollbars=auto,resizable=yes"); 
	zoom_console.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>foto</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link rel="stylesheet" type="text/css" href="/css.css"><body class="okno">'); 
	zoom_console.document.write('<div class="oknoimg"><img onclick="window.close()" style="cursor:hand" src="'+zoompath+'" width="'+zoomw+'" height="'+zoomh+'" alt="'+zoomtitle +"\n \n"+'  Klikni a zavrieš okno" border="0"></div>'); 
	zoom_console.document.write('<a class="oknoclose" href="javascript:window.close()" title="'+text+'">'+text+'</a>'); 
	zoom_console.document.write("</body></html>"); 
	zoom_console.document.close(); 
	return true; 
}