function writeHeader() {
    s = '\n'
         + '<head>\n'
         + '<title>RVS Alumni Website</title>\n'
         + '<link rel="stylesheet" type="text/css" href="/js/style.css"/>\n'
         + '<script language="javascript" src="/js/switchContent.js"></script>\n'
         + '<script language="javascript" src="/js/functions.js"></script>\n'
         + '</head>\n'
         + '<body bgcolor="black" leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onload="if (self != top) top.location = self.location">\n'

    //alert(s);
    document.write(s);
}

writeHeader();
