function stredx(x)
{
sw=screen.width;
fx=(sw-x)/2;
return fx;
}

function stredy(y)
{
sh=screen.height;
fy=(sh-y)/2;
if (fy<60) {return 0}
return fy;
}

function view(id, width, height)
{
    	newWindow = window.open("","newWindow","width="+width+",height="+height+",left="+((screen.width / 2) - (width / 2))+",top="+((screen.height / 2) - (height / 2))+"");
	newWindow.document.write('<html><title>:: Fitness Větrník</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="white" onClick="self.close()">');  
	newWindow.document.write('<table width='+width+' border="0" cellspacing="0" cellpadding="0" align="center" height='+height+' ><tr><td>');
	newWindow.document.write('<img src="images/'+id+'" width='+width+' height='+height+' alt="Kliknutím zavřete okno" >'); 
	newWindow.document.write('</td></tr></table></body></html>');
	newWindow.document.close();
	newWindow.focus();
  }