There are many syntactic errors, both to your HTML, javascript code and
CSS. Use validators and check the javascript console of your browser,
e.g., Firebug in Firefox, for error messages.
Here are some of the typos I found:
<link rel="stylesheet" type="text/css" href="examples.css">
//provides the attributes for graph features
'//' is not the way to add comments in HTML.
<script type="text/javascript"
src="
https://www.google.com/jspai"></script>
It should be 'jsapi', not 'jspai'.
<script type="text/javascript" id="sgvzler_script"
src="
http://sgvziler.googlecode.com/svn/release/0.5/sgvizler.js"></script>
It should be 'sgvzler_script', not 'sgvzler_script'; and
'
sgvizler.googlecode.com', not '
sgvziler.googlecode.com'.
sgvizler.option.namespace.npd="
http://sws.ifi.uio.no/npd/';
sgvizler.option.namespace.npdv="
http://sws.ifi.uio.no/vocab/npd#';
Don't mix ' and ".
style="width:800px; height=400px;"
^^^
Use colon in CSS.
sgvizler.option.query {
<div id="sgviz_example_table"
....
>
}
</div>
This is a strange mix of HTML and javascript.
Attached is a modified version of your file which works.
Best,
Martin