function fillWindow(window, content)
{
window.document.write(
	'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"'
+'"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
+'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">'
 +' <head>'
    +'<title>Printing</title>'
   +' <meta name="robots" content="noindex"></meta>'
   +'<meta name="Generator" content="CMS Made Simple - Copyright (C) 2004-6 Ted Kulp. All rights reserved." />'
    +'<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'
  +'</head>'
  +'<body	style="background-color: white; color: black; background-image: none; text-align: left;width: 595px;" >'	
+'<br/>'


+content
+'<br/><br/><br/><br/><br/><br/>'
+'</body></html>');

}