public class PageTop {
public StringBuffer getPageTop(StringBuffer sb, String page) {
sb.append("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>\n"+
"<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' >\n"+
" <head>\n"+
" <meta http-equiv='content-type' content='text/html; charset=iso-8859-1' />\n"+
" <meta name='keywords' content='"+page.replace('-', ' ')+"' />"+
" <title>"+page.replace('-',' ')+"</title>\n"+
" </head>\n"+
" <body"+onload+">\n");
return sb;
}
};