<!--
function show(name)
{
    if ( name != null && name == "ordering" )
    {
        window.open( "/order_options_popup.jsp", "OrderingInformation", 'height=450,width=750,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0' );
    }
    else if ( name != null && name == "shipping" )
    {
        window.open( "/shipping_popup.jsp", "ShippingInformation", 'height=450,width=750,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0' );
    }
}
function showimage( imgname, name )
{
    window.open( "/image.jsp?image=" + imgname + "&name=" + name, "ProductPicture", 'height=430,width=400,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0' );
}
//-->

