/* Print Function */
function print_go()
    {
        var a = window.open('','','width=720,height=820,scrollbars=yes');
        a.document.open("text/html");		
        a.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
        a.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
        a.document.write('<head>');
        a.document.write('<title>Kickoff 2010</title>');
        a.document.write('<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">');
        a.document.write('<meta http-equiv="X-UA-Compatible" content="IE=7">');
        a.document.write('<link rel="stylesheet" type="text/css" href="/2010/css/default.css" media="projection, screen" />');
        a.document.write('<link rel="shortcut icon" type="image/x-icon" href="/2010/images/favicon.ico">');
        a.document.write('<script type="text/javascript" src="/2010/js/unitpngfix.js"></script>');
        a.document.write('<script type="text/javascript" src="/2010/js/script.js"></script>');
        a.document.write('</head>');
        a.document.write('<body>');			
        a.document.write('<div id="content_left"  style="margin:10px; padding:10px; background-color:#ffffff;	border:2px solid #ff0202;">');
		a.document.write('<div style="margin:0px; width=100%; padding:10px; background-color:#000000;">');
		a.document.write('<img src="/2010/images/kickoff_logo.jpg" width="385" height="87" />');		
		a.document.write('</div>');

		a.document.write('<div style="clear:both"></div>');
        a.document.write(document.getElementById('content_left').innerHTML);
        a.document.write('</div>');		
		a.document.write('</body></html>');
        a.document.close();
		a.setTimeout("print()",5000);
       
    }

/* Print Function */
