function flash( swf, width, height){
	document.write('<object type="application/x-shockwave-flash"\n');
	document.write('  data="'+swf+'" width="'+width+'" height="'+height+'">\n');
	document.write('<param name="movie" value="'+swf+'" /><param name=wmode value=opaque>\n');
	document.write('</object>\n');
}

function flash_popup( swf, width, height, id){
	document.write('<p>\n');
	document.write('<object type="application/x-shockwave-flash"\n');
	document.write('  data="'+swf+'" width="'+width+'" height="'+height+'" id="'+id+'">\n');
	document.write('<param name="movie" value="'+swf+'" /><param name=wmode value=transparent><param name=loop value=false><param name=menu value=false><param name=bgcolor value=#FFFFFF>\n');
	document.write('</object>\n');
	document.write('</p>\n');
}
function loadEmpty( elem ){
	elem.src='/themes/default/zasoby/obrazy/brak_foto.jpg';
}
function loadMiniEmpty( elem ){
	elem.src='/themes/default/zasoby/obrazy/brak_foto_m.jpg';
}
function loadGalleryImage( gallery, elem, description ){
	document.getElementById(gallery).src=elem;
	document.getElementById("img_description").innerHTML=description;
}

function create_window(image, width, height) 
{
	width = width + 40;
	height = height +110;

	var window_spec = "location=no, scrollbars=no, menubars=no, toolbars=no, resizable=yes, left=0, top=0, width=0 , height=0";
	var url = "image_window.php?image=" + image;
	pop_up_window = window.open(url, 'pop_up_window', window_spec); 
	pop_up_window.resizeTo(width,height);
	pop_up_window.focus();

}
//------------------------------------------------------------------------------------------
