﻿function openimage(imagename){
<!-- 
	nw = window.open("about:blank","",'left=150, top=20, width=600, height=420 resizable=0, scrollbars=no, menubar=no')
	doc = nw.document;
	doc.open('text/html');
	doc.write('<html><head><title>REKORD Hale Namiotowe<\/title>');
	doc.write('<link rel="stylesheet" href="style.css" type="text/css">');
	doc.write('<\/head><body background="imgs/back_pop.gif" style="margin:0px"><table width="600" height="420" valign="middle" border="0"><tr><td><center>');
	doc.write('<a href=# onclick=self.close()><img src=' + imagename + ' alt="Zamknij okno" class="big_img" style="vertical-align:middle;"><\/a><\/center><\/td><\/tr><\/table>');
	doc.write('<\/body><\/html>');
	doc.close();
}
function openwindow(filename,winname,features){
	window.open(filename,winname,features);
}