﻿<!--  
function View(title,p,i,max,upfile){
  document.open();
  var j;
  document.write('<table VALIGN="middle" ALIGN="CENTER" CLASS="t1b" border="0" width="700">');
  document.write('<tr>');
  document.write('   <td align="center" colspan="3"> &nbsp;'+title+'&nbsp;&nbsp;&nbsp;('+i+'/'+max+')</td>');
  document.write('</tr>');
  document.write('<tr>');
  document.write('   <td align="right"> &nbsp;');

  if (i>1) { 
    j=i-1;
    document.write('<a href="index.php?view=View('+"'"+title+"','"+p+"'"+','+j+','+max+','+"'"+upfile+"'"+')"><img src="img/left.gif" alt="poprzedni obraz" border="0"></img></a>');
   }
  document.write('</td>');

  document.write('   <td align="center"> &nbsp;<a href="index.php?view=Viewer('+"'"+title+"','"+p+"'"+','+max+','+"'"+upfile+"'"+')"><img src="img/up.gif" alt="cofnij się do góry" border="0"></img></a></td>');

  document.write('   <td align="left"> &nbsp;');
  if (i<max) {
    j=i+1;
    document.write('<a href="index.php?view=View('+"'"+title+"','"+p+"'"+','+j+','+max+','+"'"+upfile+"'"+')"><img src="img/right.gif" alt="nastepny obraz" border="0"></img></a>');
   }
  document.write('</td>');

  document.write('</tr>');
  document.write('</table>');

  document.write('<XML ID="napisy" SRC="'+p+'/'+'napisy.xml"></XML>');
  
  document.write('<table VALIGN="middle" ALIGN="CENTER" CLASS="t2" border="0" DATASRC="#napisy">');
  document.write('<tr>');
  document.write('	<td VALIGN="middle" ALIGN="CENTER" CLASS="t2b" >');
  document.write('<img src="'+p+'/'+i+'.jpg" alt="" border="1"></img>');
  document.write('	 </td>');
  document.write('</tr>');

  document.write('<tr>');
  document.write('	<td VALIGN="middle" ALIGN="CENTER" CLASS="t2b" >');
  document.write('<span DATAFLD="n'+i+'"></span>');
  document.write('	 </td>');
  document.write('</tr>');

  document.write('</table>');
  document.close();
  }
  

function Viewer(title,p,max,upfile){
  document.open();
  document.write('<table VALIGN="middle" ALIGN="CENTER" CLASS="t2" border="0">');
  document.write('<tr>');
  document.write('   <td colspan="2" VALIGN="middle" ALIGN="CENTER" CLASS="t2b" >');
  document.write('      &nbsp;'+title+'&nbsp;&nbsp;&nbsp;('+max+')');
  document.write('   </td>');
  document.write('</tr>');
  document.write('<tr><td colspan="2" align="center"> &nbsp;<a href="index.php?cat='+upfile+'"><img src="img/up.gif" alt="cofnij się do galerii" border="0"></img></a></td></tr>');
  document.write('</table>');

  document.write('<div align="center">');

  var i=1;
  for (i=1;i<=max;i++) {
    document.write('<a href="index.php?view=View('+"'"+title+"','"+p+"'"+','+i+','+max+','+"'"+upfile+"'"+')"><img src="'+p+'/m'+i+'.jpg" alt="" border="1"></img></a>&nbsp;');
   }

  document.write('</div>');
  document.close();
  }
  
function PlayAvi(title,name){
  document.open();
  var j;
  document.write('<html>');
  document.write('<HEAD>');
  document.write('  <meta http-equiv="content-type" content="text/html; charset=windows-1250">');
  document.write('  <link href="festus.css" rel="stylesheet" media="screen">');
  document.write(' <script language="javascript" src="viewer.js"></script>');
  document.write('  <TITLE>Gallery Viewer</TITLE>');
  document.write('</HEAD>');

  document.write('<body text="#000000" bgcolor="#ffffff" link="#000000" vlink="#000000" alink="#000000"  background="img/bgsea.jpg" bgproperties="fixed">');
  document.write('<table VALIGN="middle" ALIGN="CENTER" CLASS="t2" border="0" width=200>');
  document.write('<tr>');

  document.write('   <td align="center"> &nbsp;<a href="javascript:history.back()"><img src="img/up.gif" alt="cofnij się do góry" border="0"></img></a></td>');


  document.write('</tr>');
  document.write('</table>');

  document.write('<table VALIGN="middle" ALIGN="CENTER" CLASS="t2" border="0">');
  document.write('<tr>');
  document.write('	<td VALIGN="middle" ALIGN="CENTER" CLASS="t2b" >');
  document.write('<img controls="1" dynsrc="'+name+'" src="/img/ladowaniepliku.gif" alt="" border="1"></img>');
  document.write('	 </td>');
  document.write('</tr>');
  document.write('</table>');

  document.write('</body>');
  document.write('</html>');
  document.close();
  }

function PlayYouTube(title,name,upfile){
  document.open();
  document.write('<table VALIGN="middle" ALIGN="CENTER" border="0">');
  document.write('<tr>');
  document.write('   <td colspan="2" VALIGN="middle" ALIGN="CENTER" CLASS="t2b" >');
  document.write('      &nbsp;'+title);
  document.write('   </td>');
  document.write('</tr>');
  document.write('<tr><td colspan="2" align="center"> &nbsp;<a href="index.php?cat='+upfile+'"><img src="img/up.gif" alt="cofnij się" border="0"></img></a></td></tr>');
  document.write('</table>');
  document.write('<table align="center">');
  document.write('<tr><td>');
  //  document.write('<object>');
  document.write('<embed src="'+name+'&hl=pl&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="512" height="409"></embed>');
//  document.write('</object>');
  document.write('</td></tr>');
  document.write('</table>');
  }


//-->
