var relpath='';
function PrintPageTop(title,path,heads){
    title=title || 'Bioinformatics Research Group';
    path=path || '';
    heads=heads || '';
    relpath=path;
    var links=[
    ['Home','index.html'],
    //['Research','research.html'],
    //['Publications','publications.html'],
    ['Software','software'],
    ['People','people.php'],
    //['News','news.html'],
    ['Search','search.html'],
    ['Contact Us','contact.html']
    ];
    bgcolor='#7777ff';
    document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>'+title.replace(/(<([^>]+)>)/ig," - ")+'</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">' + heads + '<link rel="stylesheet" href="'+path+'db.css" type="text/css"><link rel="stylesheet" href="'+path+'style.css" type="text/css"> </head> <body>' +
'<table width="900px" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="f4f4f4"><tr><td bgcolor="'+bgcolor+'" style="font-size:3px" width="100">&nbsp<td bgcolor="'+bgcolor+'" style="font-size:3px">&nbsp;<td bgcolor="'+bgcolor+'" style="font-size:3px">&nbsp;'+
'<tr> <td align=center bgcolor="'+bgcolor+'"> <img height="70" border="0" src="'+path+'images/logo.png" /> </td> <td valign="top" bgcolor="'+bgcolor+'"><table width="95%" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <span style="color:#ffffff; font-size: 25px;"> Bioinformatics Research Group<br /> <span style="font-size: 14px"> Dept of Computer Science and Engineering<br /> The Ohio State University </span> </span> </td> </tr> </table> </td> <td bgcolor="'+bgcolor+'"></td> </tr> <tr> <td height="100%" valign="top" bgcolor="#eeeeff"> <div align="center"> <table width="95%" cellspacing="0" cellpadding="0"> <tr> <td style="font-size: 16px;"> <br /><br /> <table cellpadding="0" cellspacing="0" class="moduletable"> <tr> <td> <table class="sidemenu" width="100%" border="0" cellpadding="0" cellspacing="0">');
for (var i=0; i<links.length; i++){
    document.write('<tr align="left"><td><a href="'+path+links[i][1]+'" class="mainlevel">'+links[i][0]+'</a></td></tr>');
}
document.write('</table> <p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><hr><small>Supported by:</small><br><center><img width=80 src="'+path+'images/nsf.png"></center></td> </tr> </table> </td> </tr> </table> </div></td> <td height="100%" valign="top" bgcolor="ffffff"> <table width="95%" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <table class="blog" cellpadding="0" cellspacing="0"><tr><td valign="top"><div> <table class="contentpaneopen" width="100%"> <tr> <td class="contentheading" width="100%">'+title+'</td> </tr> </table>');
}
function PrintPageBottom(){
    bgcolor='#7777ff';
    document.write('</div></td></tr></table><p>&nbsp;</p> <div class="back_button"> <a href="javascript:history.go(-1)"> [ Back ] </a> </div> </td> </tr> </table> </td> <td valign="top" bgcolor="e1e1e1" ></td> </tr> <tr> <td bgcolor="'+bgcolor+'">&nbsp;</td> <td height="10" bgcolor="'+bgcolor+'"><div align="center"></div></td> <td height="10" bgcolor="'+bgcolor+'">&nbsp;</td> </tr> </table> </body> </html>');
}