// JavaScript Document
function displayHTML() {
var inf = document.getElementById('printarea').innerHTML;
win = window.open("print.htm", 'popup', 'toolbar = no, status = no, scrollbars=yes');
win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
win.document.write('<html>');
win.document.write('<head>');
win.document.write('<title>Untitled Document</title>');
win.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
win.document.write('<style type="text/css">');
win.document.write('.slideshow{');
win.document.write('	float: left;');
win.document.write('	margin-right: 15px;');
win.document.write('	margin-bottom: 15px;');
win.document.write('}');

win.document.write('.slideshow img{');
win.document.write('	border: 1px solid #000000;');
win.document.write('	padding: 3px;');
win.document.write('}');

win.document.write('#navlinks{ /*CSS for DIV containing the navigational links*/');
win.document.write('width: 400px;');
win.document.write('}');

win.document.write('#navlinks a{ /*CSS for each navigational link*/');
win.document.write('margin-right: 8px;');
win.document.write('margin-bottom: 3px;');
win.document.write('font-size: 110%;');
win.document.write('}');

win.document.write('#navlinks a.current{ /*CSS for currently selected navigational link*/');
win.document.write('background-color: yellow;');
win.document.write('}');


win.document.write('body,td,th {');
win.document.write('	color: #000000;');
win.document.write('}');

win.document.write('body {');
win.document.write('	background-color: #ffffff;');
win.document.write('	font-family: Arial, Helvetica, sans-serif;');
win.document.write('	font-size: 12px;');
win.document.write('	color: #000000;');
win.document.write('}');

win.document.write('h1 {');
win.document.write('	font-family: Arial, Helvetica, sans-serif;');
win.document.write('	font-size: 20px;');
win.document.write('	font-style: italic;');
win.document.write('	color: #000000;');
win.document.write('}');

win.document.write('</style>');
win.document.write('</head>');
win.document.write('<body>');

win.document.write(inf + "<br /><a href='javascript:print()'>print</a>");
win.document.write('</body>');
win.document.write('</html>');

win.document.close();
}


   
   /* Script to help dumb IE understand :hover on non-anchors.  In this case, we're specifically
    assigning mouseover events and a new css classname ("over") to li elements of the sidenav ul.
    */
<!--
<!--//--><![CDATA[//><!--
    startList = function() {
        if (document.all&&document.getElementById) {
            navRoot = document.getElementById("sidenav");
            for (i=0; i<navRoot.childNodes.length; i++) {
                node = navRoot.childNodes[i];
                if (node.nodeName=="LI") {
                    node.onmouseover=function() {
                        this.className+=" over";
                    }
                    node.onmouseout=function() {
                        this.className=this.className.replace(" over", "");
                    }
                }
            }
        }
    }
    window.onload=startList;
    
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}



function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_controlShockwave(objStr,x,cmdName,frameNum) { //v3.0
  var obj=MM_findObj(objStr);
  if (obj) eval('obj.'+cmdName+'('+((cmdName=='GotoFrame')?frameNum:'')+')');
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
