
/**
  * Stampa la posizione all'interno dei menu nel frame "bottom"
  *
  */

  function libmsg(framename,message) {

	if (parent.frames[framename] != null) {

  	var doc = parent.frames[framename].document;

  	doc.open("text/html", "replace");
  	doc.writeln("<html>");
  	doc.writeln("<head>");
  	doc.writeln("</head>");
  	doc.writeln("<body marginheight='0' marginwidth='0' topmargin='0' leftmargin='0' bgcolor='#617CA9'>");

  	doc.writeln("<table height='22' width='100%' border='0' cellpadding='0' cellspacing='0' bgcolor='#FFFFFF'>");

  	doc.writeln("    <tr>");

  	doc.writeln("        <td height='22' bgcolor='#000000' align='left' valign='top' nowrap>");
    doc.writeln("             <font size='3' color='#FFFFFF'>&nbsp Menu : </font><font size='2' color='#FFFFFF'>&nbsp;" + message + "</font>");
  	doc.writeln("        </td>");

  	doc.writeln("        <td bgcolor='#000000' width='80' height='22' valign='top' nowrap>");
    doc.writeln("	          &nbsp;");
  	doc.writeln("        </td>")

  	doc.writeln("        <td bgcolor='#FFFFFF' width='22' height='22' valign='top' nowrap>");
    doc.writeln("	          <img src=/brex/img/rightbottombar.gif>");
  	doc.writeln("        </td>")

  	doc.writeln("        <td bgcolor='#FFFFFF' width='100%' height='22' align='right' valign='top' nowrap>");
  	doc.writeln("             <img src=/brex/img/powered.gif>");
  	doc.writeln("        </td>");

  	doc.writeln("    </tr>")

	doc.writeln("</table>")

  	doc.writeln("</body>");
  	doc.writeln("</html>");

  	doc.close();

	}

  }


