//#################################################################################
function expand_button_code(name)
{
    eval(   'g_'
          + name
          + ' = new Image(); g_'
          + name
          + '.src = "./graphics/'
          + name
          + '.gif"; g_'
          + name
          + '_h = new Image(); g_'
          + name
          + '_h.src = "./graphics/'
          + name
          + '_h.gif";'
        );
}

//#################################################################################
function expand_button_code_(name)
{
    eval(   'g_'
          + name
          + ' = new Image(); g_'
          + name
          + '.src = "../graphics/'
          + name
          + '.gif"; g_'
          + name
          + '_h = new Image(); g_'
          + name
          + '_h.src = "../graphics/'
          + name
          + '_h.gif";'
        );
}

//#################################################################################
function make_button(name, link)
{
	window.document.write(   '<A HREF="'
                            + link
                            + '" OnMouseOver="hover_gif(\''
                            + name
                            + '\');" OnMouseOut="un_hover_gif(\''
                            + name
                            + '\');"><IMG NAME="i_'
                            + name
                            + '" SRC="./graphics/'
                            + name
                            + '.gif" HSPACE="0" VSPACE="0" BORDER="0"></A>'
				        );
}

//#################################################################################
function make_button_(name, link)
{
	window.document.write(   '<A HREF="'
                            + link
                            + '" OnMouseOver="hover_gif(\''
                            + name
                            + '\');" OnMouseOut="un_hover_gif(\''
                            + name
                            + '\');"><IMG NAME="i_'
                            + name
                            + '" SRC="../graphics/'
                            + name
                            + '.gif" HSPACE="0" VSPACE="0" BORDER="0"></A>'
				        );
}

//#################################################################################
function make_active_button(name, action)
{
    window.document.write(    '<A HREF="JavaScript: window.document.the_form.cgi_action.value=\''
                            + action
                            + '\';  window.document.the_form.submit();" '
                            + 'OnMouseOver="hover_gif(\''
                            + name
                            + '\');" OnMouseOut="un_hover_gif(\''
                            + name
                            + '\');"><IMG NAME="i_'
                            + name
                            + '" SRC="./graphics/'
                            + name
                            + '.gif" HSPACE="0" VSPACE="0" BORDER="0"></A>'
				        );
}

//#################################################################################
function make_active_button_(name, action)
{
    window.document.write(    '<A HREF="JavaScript: window.document.the_form.cgi_action.value=\''
                            + action
                            + '\';  window.document.the_form.submit();" '
                            + 'OnMouseOver="hover_gif(\''
                            + name
                            + '\');" OnMouseOut="un_hover_gif(\''
                            + name
                            + '\');"><IMG NAME="i_'
                            + name
                            + '" SRC="../graphics/'
                            + name
                            + '.gif" HSPACE="0" VSPACE="0" BORDER="0"></A>'
				        );
}

//#################################################################################
function make_quote_button(item)
{
    window.document.write(   '<TABLE WIDTH="100%"><TR><TD ALIGN="RIGHT"><A HREF="JavaScript: window.document.the_form.cgi_action.value=\'quote_towels\'; window.document.the_form.item.value=\''
                           + item
                           + '\'; window.document.the_form.submit();"><IMG SRC="./graphics/quote.gif" BORDER="0"></A></TD></TR></TABLE>'
                         );
}

//#################################################################################
function make_quote_button_(item)
{
    window.document.write(   '<TABLE WIDTH="100%"><TR><TD ALIGN="RIGHT"><A HREF="JavaScript: window.document.the_form.cgi_action.value=\'quote_towels\'; window.document.the_form.item.value=\''
                           + item
                           + '\'; window.document.the_form.submit();"><IMG SRC="../graphics/quote.gif" BORDER="0"></A></TD></TR></TABLE>'
                         );
}

//#################################################################################
function hover_gif(name)
{
	eval("document.i_" + name + ".src = g_" + name + "_h.src");
}

//#################################################################################
function un_hover_gif(name)
{
	eval("document.i_" + name + ".src = g_" + name + ".src");
}

//#################################################################################
var bigger_window

//#################################################################################
function bigger_view(name)
{
    var page_contents =   '<HTML><HEAD></HEAD><BODY TOPMARGIN="0" LEFTMARGIN="0"><CENTER><IMG SRC="../data/240/'
                        + name
                        + '"></CENTER></BODY></HTML>';

    bigger_window = window.open('', 'bigger_window', 'height=240,width=240');

    bigger_window.document.write(page_contents);

    bigger_window.document.close();
}

//#################################################################################
function close_bigger_view()
{
    if(bigger_window)
        bigger_window.close();
}
//#################################################################################
///////////////////////////////////////////////////////////////////////////////////
//#################################################################################




