function Gfx(pic,x,y)
{
    var s='<html><head><TITLE>Agroturystyka Ranczo Boża Wola</TITLE> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"></head>\n'; 
     s=s+'<body BGCOLOR="#ffffff" MARGINWIDTH=0 MARGINHEIGHT=0 TOPMARGIN=0 LEFTMARGIN=0>\n';
    s=s+'<A HREF="javascript:close()"><IMG ALT="Zamknij okno..." BORDER=0 SRC="'+pic+'"></A>\n';
    s=s+'</body></html>';

    var f = null;
    f = window.open('','','width='+x+',height='+y+',left=50,top=20,resizable=1,directories=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0');
    if(f != null) {
        if(f.opener == null) {
          f.opener = self
        }
        f.document.clear();
        f.document.write(s);
        f.document.close();
    }
}

function flash(file_name,file_id, bgc, w, h, wmode){
	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) {
		document.writeln(' <embed name="'+file_id+'" src="'+file_name+'"');
		document.writeln(' quality="high" bgcolor="'+bgc+'" menu="false" swLiveConnect="true" allowScriptAccess="sameDomain"');
		document.writeln(' width="'+w+'" height="'+h+'" wmode='+wmode+' ');
		document.writeln(' type="application/x-shockwave-flash"');
		document.writeln(' pluginspage="http://www.macromedia.com/go/getflashplayer"> ');
	} else {
		document.writeln('.......');
	}
}