function ShowGallery(NEWS_ID, FILE_ID, TABLE) {
	var NewWindow = window.open("galeria.php?id="+NEWS_ID+"&file="+FILE_ID+"&dzial="+TABLE, "galeria", 'width=800, height=600, scrollbars=no,resizable=no');
	NewWindow.focus();
}


function ShowGalleryOne(NEWS_ID, FILE_ID, TABLE) {
	var NewWindow = window.open("galeria_one.php?id="+NEWS_ID+"&file="+FILE_ID+"&dzial="+TABLE, "galeria", 'width=800, height=600, scrollbars=yes,resizable=no');
	NewWindow.focus();
}


function ShowFoto(FILE_NM) {
	//alert(document.getElementById('preview_image').src);
	//var CH = document.getElementById('preview_image').childNodes;
	//if (CH.length>0) {
		
	//}
	var Element = document.getElementById('displayed_img');
   var Rodzic  = Element.parentNode;
   Rodzic.removeChild(Element);
   
   var MAIN = document.getElementById("preview_image");
   var IMG = document.createElement("img");
   IMG.src = "gen_img_resize.php?file="+FILE_NM+"&width=600&height=370&size=tak";
   IMG.id = "displayed_img"; IMG.style.border='0px;';
   MAIN.appendChild(IMG);
   
	//document.getElementById('preview_image').src = "galeria_view_image.php?file="+FILE_NM;
	//document.getElementById('preview_image').refresh();
}


function ShowImg(W,H,IM) {
	var NewWindow = window.open("show_photo.php?f="+IM+"&w="+W+"&h="+H, "f"+W+"x"+H, 'width='+W+', height='+H+', scrollbars=no,resizable=no');
	NewWindow.focus();
}
