function kk_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  scrWidth = width + 15;
  scrHeight = height + 15;
  
  newWindow = window.open("http://www.x-workz.de/kk_new.htm", name, 'left='+left+',top='+top+',width='+scrWidth+',height='+scrHeight+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
  newWindow.document.open();
  newWindow.document.write('<html><title>'+name+'</title><body leftmargin="0" topmargin="6" marginhight="0" marginwidth="0" bgcolor="222222" onClick="self.close()">');
  newWindow.document.write('<table align="center" border="0" cellpadding="0" cellspacing="0" width='+width+' height='+height+'><tr><td>');
  newWindow.document.write('<img src="'+url+'" width='+width+' height='+height+' alt="click image to close window" >');
  newWindow.document.write('</td></tr></table></body></html>');
  newWindow.document.close();
  newWindow.focus();
}