function open_menu(name) {

	if (name == 'menu2') {
	  document.all[name].style.top = '95 px';
	  document.all[name].style.visibility = 'visible';
	  
	}
}

function write_menu(name) {
  document.all[name].style.visibility = 'hidden';

  if (name == 'menu2') {
    document.write('<TABLE CELLPADDING=3 CELLSPACING=0 CLASS=menutabla><TR>');
	document.write('<TD BGCOLOR="#cce4f1" STYLE="width:4px;"></TD><TD><DIV CLASS=menuszoveg>&raquo;&nbsp;&nbsp;<A HREF="szinesfem.html" CLASS=menulink>Színesfém <br><img src="images/spacer.gif" width="14" height="3" border="0">hulladék</A><BR>');	
	document.write('&raquo;&nbsp;&nbsp;<A HREF="kabel.html" CLASS=menulink>Kábel hulladék</A><BR>');	
	document.write('&raquo;&nbsp;&nbsp;<A HREF="elektronika.html" CLASS=menulink>Elektronikai <br><img src="images/spacer.gif" width="14" height="3" border="0">hulladék</A></DIV></TD>');
	document.write('</TR></TABLE>');  
  
  } 
  
}

function close_menu(name) {
  document.all[name].style.visibility = 'hidden';
  document.all[name].style.top = '96px';
}


