<?php

include($DOCUMENT_ROOT . "/include/layout.php");

$title = "Resumes";
$description = "Scott Kirkwood's Résumé";
$keywords = "resume, cv, curriculum, résumé, scott, kirkwood, xml, curiculo";
$filedate = filemtime($DOCUMENT_ROOT . $PHP_SELF);

PrintHeader();

echo <<<EOD
<p>I have several versions of my résumé on-line click on the one you want:</p>

<h3>English Versions:</h3>
<table border="0" width="100%">
  <tr>
    <td width="20%" valign="top"><a href="resume-en.html">DHTML</a></td>
    <td width="80%" valign="top">Interactive and long (complete) version which uses DHTML to redender my C.V..</td>
  </tr>
  <tr>
    <td width="20%" valign="top"><a href="resume-en-p.html">HTML Short</a></td>
    <td width="80%" valign="top">Normal HTML version version of my résumé.</td>
  </tr>
  <tr>
    <td width="20%" valign="top"><a href="ScottKirkwood-en.pdf">PDF</a></td>
    <td width="80%" valign="top">Same as above, but in Adobe Acrobat<small><sup>®</sup></small> 
    format.</td>
  </tr>
  <tr>
    <td width="20%" valign="top"><a href="ScottKirkwood-en.doc">DOC</a></td>
    <td width="80%" valign="top">Microsoft Word<small><sup>®</sup></small> format document.</td>
  </tr>
</table>

<br/>
<h3>Versões em português:</h3>
<table border="0" width="100%">
  <tr>
    <td width="20%" valign="top"><a href="resume-pt.html">DHTML</a></td>
    <td width="80%" valign="top">Versão comprido em Português do meu currículo usando a tecnologia DHTML.</td>
  </tr>
  <tr>
    <td width="20%" valign="top"><a href="resume-pt-p.html">HTML curto</a></td>
    <td width="80%" valign="top">Versão em Português do meu currículo, mas não interativo.</td>
  </tr>
  <tr>
    <td width="20%" valign="top"><a href="ScottKirkwood-pt.pdf">PDF</a></td>
    <td width="80%" valign="top">Arquivo em formato Adobe Acrobat<small><sup>®</sup></small></td>
  </tr>
  <tr>
    <td width="20%" valign="top"><a href="ScottKirkwood-pt.doc">DOC</a></td>
    <td width="80%" valign="top">Arquivo em formato Microsoft Word<small><sup>®</sup></small></td>
  </tr>
</table>

<p>My XML resumé uses some interesting technology including XSL and Javascript.&nbsp; 
<a href="/include/redir.php?u_target=xmlhowididit.php">See how I did it</a>.</p>


<p>I've also taken the time to certify myself with a company called BrainBench (when it was still free). The
following are the certificates that I have achieved so far.&nbsp; Click on any of the
images below to get my complete transcript.</p>

<p>
<!-- use text-decoration: none to remove the ugly underline when using the images -->
<a style="text-decoration: none; " href="/include/redir.php?u_target=http://www.brainbench.com/transcript.jsp?pid=795103"><br/>
<img src="mytranscript.jpg" alt="mytranscript" width="85" height="85" border="0"/><br/>
<img src="cppprogrammer.gif" alt="cppprogrammer" width="175" height="57"  border="0"/><br/>
<img src="datawarehousingspecialist.gif" alt="datawarehousingspecialist" width="175" height="57" border="0"/><br/>
<img src="windowsapiprogrammer.gif" alt="windowsapiprogrammer" width="175" height="57" border="0"/><br/>
<img src="visualcppprogrammer.gif" alt="visualcppprogrammer" width="175" height="57" border="0"/>
</a></p>

EOD;

PrintFooter();

?>