function galeria(adres) 
{
  var width=640;
  var height=480;
  var Win=window.open("","Image", 'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no');

  Win.document.write('<html><HEAD><TITLE>Image</TITLE><style>body{ margin-left: 0px;margin-right: 0px; margin-top: 0px;margin-bottom: 0px; }</style><link rel="stylesheet" href="style.css" type="text/css"></HEAD>');
  Win.document.write('<body bgcolor="#FFFFFF">');
  Win.document.write('<table width=100% height=100% cellpadding=0 cellspacing=0><tr><td align=center><a href="javascript:close();"><img name="obrazek" border="0" src='+adres+' onload="javascript:window.resizeTo(obrazek.width+30,obrazek.height+70);" class=border></a></td></tr></table>');
  Win.document.write('<body></html>');
  	 Win.document.close();
	 Win.focus();
}



function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no' );
}


/*//---------kartka swiateczna--------------------
displayWindow('zyczenia.html', 660, 510)	;
*/

 
