

function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible"
}

function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden"
}


function showheader(subject, title)
{
document.write("<table cellspacing='0' cellpadding='0' colspan='7' width='856'>"
  +"<tr align='right' valign='top'>"
    +"<td rowspan='1' colspan='6' style='width:711px; height:69px'>"
    +"<img width='711' height='69' src='shared/images/header_top_left2wb.jpg' alt=''></td>"
    +"<td rowspan='1' colspan='1' style='width:145px; height:69px'>"
    +"<a href='http://www.noe-kaleidoscope.org/pub/' title='Kaleidoscope' target='_blank'>"
    +"<img width='145' height='69' src='shared/images/header_top_right.jpg' alt='Kaleidoscope'></a></td>"
  +"</tr>"
  +"<tr colspan='7' valign='top' class='menu'>"

    +"<td rowspan='1' colspan='1' style='width:80px; height:49px'>"
    +"<a href='index.html'>Home</a>"
+"</td>"

    +"<td rowspan='1' colspan='1' style='width:108px'>"
	+"<a href='topics.html'>Topics of Interest</a><br />"
    +"</td>"

    +"<td rowspan='1' colspan='1' style='width:145px'>"
	+"<a href='organisation.html'>Organisation</a><br />"
    +"</td>"

    +"<td rowspan='1' colspan='1' style='width:128px'>"
    +"<a href='submission.html'>Submission Details</a><br />"
    +"</td>"

    +"<td rowspan='1' colspan='1' style='width:120px'>"
    +"<a href='program.html'>Program</a><br />"
    +"</td>"

    +"<td rowspan='1' colspan='1' style='width:130px'>"
    +"<a href='papers.html'>Papers and Presentations</a><br />"
    +"</td>"

    +"<td rowspan='1' colspan='1' style='width:145px; text-align: center'>"
    +"<a href='committee.html'>Committee</a><br />"
    +"</td>"

    +"</tr>"
    +"<tr align='left' valign='top'>"
      +"<td rowspan='1' colspan='7' style='width:856px; height:13px'>"
      +"<img width='856' height='13' src='shared/images/bottom_line.JPG' alt=''></td>"
    +"</tr>"

    +"<tr align='center' valign='top'>"
	+"<td colspan='7'>"
    +"<table border='0' style='width:90%' cellspacing='15'>"
    +"<tr align='left' valign='top'>"
      +"<td rowspan='1'  style='height:90px' class='title'>"
      +title
      +"</td>"
    +"</tr>"
    +"</table>"

      +"</td>"
    +"</tr>"
    +"</table>"

)
}

