function picUp(strURL,nW,nH,sScroll){
	var objWin = window.open(strURL,"picture","scrollbars="+sScroll+",resizable=yes,height="+nH+"px,width="+nW+"px,left=10px,top=10px");
	return (typeof(objWin)!="object")?true:false;
}

function showpic(cesta, width, height, nazov) 
	{
	width = width + 40;
	height = height + 40;	
	WinFeatures = 'toolbar=no,location=no,scrollbars=yes,status=no,menubar=no,resizable=no,left=30px,top=0px,width='+width+',height='+height;
	Okno = window.open(cesta,'picture',WinFeatures);
	Okno.document.writeln("<html><head>");
	Okno.document.writeln("<title>&nbsp;"+nazov+"&nbsp;</title></head>");
	Okno.document.writeln("<body onClick='window.self.close()'>");
	Okno.document.writeln("<img src="+cesta+" border=0>"); 
	Okno.document.writeln("</body></html>"); 

	}


function showpictures (image, width, height, nazov) 
	{
	width = width + 40;
	height = height + 40;	
	var window_parameters = "toolbar=no,location=no,scrollbars=yes,status=no,menubar=no,resizable=no,left=30px,top=0px,width="+width+",height="+height;
	var url = "image.php?image=" + image;
	popup_window = window.open(url, 'pictures', window_parameters);
	}


function Morepics(cesta) {
        bilder = open(cesta,"pictures","width=800,height=600,left=120,top=10,scrollbars=1,resizable=1","dependend=yes");
}