function openwindow(imagename){
<!-- 
nw = window.open("about:blank","",'left=150, top=20, width=620, height=620 resizable=0, scrollbars=no, menubar=no')
doc = nw.document;
doc.open('text/html');
doc.write('<html><head><title>WalkingFloor<\/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="620" height="620" 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();
}

var hideDelay = 200;

function show(what) {
	var elem = document.getElementById(what);
	elem.style.display = 'block';
}

function whide(what) {
	setTimeout("hide('" + what + "')", hideDelay);
}

function hide(what) {
	var elem = document.getElementById(what);
	if (elem.style.display == 'block') {
		elem.style.display = 'none';
	}
}
