function openBook(id)
{
	file_name="book.asp?bid="+id;
	book = window.open(file_name,"book","width=470,height=400,scrollbars=1,resizable=1");
	book.focus();

}

function handleMenu(mode,t_id)
{
	total_menu_options = 5;
	
	// mouseover
	if(mode==1) {
			cmd = "document.all."+t_id+".className='menu_mouseover'";
			eval(cmd);
	}	
	// mouseout
	else if (mode==2) {
				cmd = "document.all."+t_id+".className='menu_text'";
				eval(cmd);
	}		
	
}

function showMenu(){
document.write ("<table width=100% cellpadding=0 cellspacing=0 style='height:17px;' border=0>");
document.write ("<tr><td colspan=12 style='height:1px; background-color:#747534;'></td></tr>");
document.write ("<tr bgcolor='#E0E0D1' valign=middle>");
document.write ("<td width=10></td>");
document.write ("<td style='height:15px;' width=60 nowarp id='td_1' class='menu_text' onmouseover='handleMenu(1,this.id)' onmouseout='handleMenu(2,this.id)'><a href='about.html' class='menu_text'>About Us</a></td>");
document.write ("<td width=20 align=center><img src='images/dot.gif' align=absmiddle width=10 height=15></td>");
document.write ("<td style='height:15px;' width=100 nowarp id='td_2'  class='menu_text' onmouseover='handleMenu(1,this.id)' onmouseout='handleMenu(2,this.id)'><a href='limited.html' class='menu_text'>Limited Editions</a></td>");
document.write ("<td width=20 align=center><img src='images/dot.gif' align=absmiddle width=10 height=15></td>");
document.write ("<td style='height:15px;' width=90 nowarp id='td_3'  class='menu_text' onmouseover='handleMenu(1,this.id)' onmouseout='handleMenu(2,this.id)'><a href='other.html' class='menu_text'>Other Editions</a></td>");
document.write ("<td width=20 align=center><img src='images/dot.gif' align=absmiddle width=10 height=15></td>");
document.write ("<td style='height:15px;' width=37 nowarp  id='td_4'  class='menu_text' onmouseover='handleMenu(1,this.id)' onmouseout='handleMenu(2,this.id)'><a href='shvo.html' class='menu_text'>Shvo</a></td>");
document.write ("<td width=20 align=center><img src='images/dot.gif' align=absmiddle width=10 height=15></td>");
document.write ("<td style='height:15px;' nowarp  id='td_5'  class='menu_text' onmouseover='handleMenu(1,this.id)' onmouseout='handleMenu(2,this.id)'><a href='antique.html' class='menu_text'>Antiquariat Books</a></td>");
document.write ("<td width=20 align=center><img src='images/dot.gif' align=absmiddle width=10 height=15></td>");
document.write ("<td style='height:15px;' nowarp   id='td_6' class='menu_text' onmouseover='handleMenu(1,this.id)' onmouseout='handleMenu(2,this.id)'><a href='index.asp' class='menu_text'>Home</a></td>");
document.write ("</tr>");
document.write ("<tr><td colspan=12 style='height:1px; background-color:#747534;'></td></tr>");
document.write ("</table>");
}