Status of Spry?

Is this still under development? whats the status on this
project? Should we start looking for another ajax framework?

Its still underdevelopment. Ajax development will never
stop.. They will always be new things to create, make things
smaller, faster, better....
The status is still beeing worked on. The Spry team is a
devision of Dreamweaver, so they ensure that Spry is well
represented in the new version of DW.
And they are still working on Spry to.. Version 1.7.1 is
still under development.. but every update they do is great, so i
would suggest to wait and see :)

Similar Messages

  • Enhancement on smartforms

    Hi experts,
    I want to place a code when the print button (i . e Text --> Print ) is clicked.
    I searched for exits and Badi's (Package name : SMART) but none existed.
    I also checked the layout .  the function code in the PF STATUS is SPRI.
    Please help me out . Can you help me where to place the
    case sy-ucomm.
       when 'SPRI'.
    endcase.
    Thanks in advance guys,

    Hi,
    Make sure that the component names and the component types of the newly added fields start with 'ZZ'
    Goto se14, enter PA0006 and click on activate and adjust.
    Hope this helps.
    Regards,
    Pulkit

  • How to keep track of the status of a spry slide effect from page to page.

    Hi All,
    I'm using a spry slide effect on a simple menu system.
    Lets say I have a home, gallery and about us page.
    I currently have the spry effect occurring with "body onload" only on the Gallery page to slide down extra sub menus only when the user lands on that page.
    My problem is that I would like the slide effect to close when having left the page and landed on either of the other two pages. I can close the slide with body onload again but obviously it will close every time regardless of whether the effect was open or closed to begin with.
    I know nothing about Javascript or the Spry Framework and therefore would like to know if there is a simple way to track whether the effect was open or closed from page to page?
    Ideally I would like the effect to only open when landing on the gallery page and closing only if the previous page was the gallery page and the effect was open. For all other instances the effect should not be actioned.
    I thought that there would be a way seeing as there is a toggle option with this effect. How does the effect know when it was previously open/closed and is there a way of parsing that in the URL so that the next page knows what to do?
    Any help would really be appreciated.
    Thanks

    Sorry, but what you wish to do, will require you to at least have a basic understanding of JavaScript and setting/unsetting cookies.
    For a basic introduction to using JavaScript try:    http://www.adobe.com/devnet/dreamweaver/articles/js_for_designers.html
    HTH
    PZ

  • How do I display on-the-fly generated XML on a web page using DW CS4 Spry regions?

    On a main web page I'm trying to display formatted data from an ASP page that generates XML on-the-fly from a query.
    When I run the ASP page from the browser, the XML formatting of the data works. But when I run the main web page, the data doesn't display.
    I'm using  DW CS4 Spry regionsto display the data on the main page from the XML data generated by the ASP page. Here's the main page code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache" >
    <html>
    <head>
    <script type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script type="text/javascript" src="SpryAssets/SpryData.js"></script>
    <script type="text/javascript" src="SpryAssets/SpryUtils.js"> </script>
    <script type="text/javascript">var A1D1xml = new Spry.Data.XMLDataSet("A1D1ACRs_testWxmlCode.asp", "tests/test");</script>
    <title>Test XML Main</title>  
    </head>
    <body>
          <div id="A1D1xml" spry:region="A1D1xml">
                                    <table id="A1D1">
                <tr>
                <th>ID</th>
                <th>Last Name</th>
                <th>Final Status</th>
                </tr>
                <tr spry:repeat="A1D1xml">
                       <td>{acr_id}</td>
                    <td>{acr_lastName}</td>
                    <td>{acr_final_status}</td>
                </tr>
                  </table>
             </div>
    </body>
    </html>
    Here's the code for the page that generates the XML: A1D1ACRs_testWxmlCode.asp
    <html>
    <%
    set objConn=server.CreateObject("ADODB.Connection")
    objConn.Open application("web_test")
    set rs = objConn.Execute( "SELECT acr_id, acr_lastName, acr_final_status from acr_records_grid_view where acr_changeOption = 'A1D1'")
    Response.ContentType = "text/xml"
    Response.AddHeader "Pragma", "public"
    Response.AddHeader "Cache-control", "private"
    Response.AddHeader "Expires", "-1"
    %>
    <?xml version="1.0" encoding="utf-8"?>
    <tests>
      <%While (NOT rs.EOF)%>
                    <test>
                                    <ID><%=(rs.Fields.Item("acr_id").Value)%></ID>
                                    <acr_lastName><![CDATA[<%=(rs.Fields.Item("acr_lastName").Value)%>]]></acr_lastName>
                                    <acr_final_status><![CDATA[<%=(rs.Fields.Item("acr_final_status").Value)%>]]></acr_final_s tatus>
                    </test>
        <%
                    rs.MoveNext()
                    Wend
      %>
    </tests>
    <%
    rs.Close()
    Set rs = Nothing
    %>
    </html>
    Thanks.

    Thanks, but no; I'm using the correct case and folder.
    With this code on the main page, The region flashes the table column header names
    and the code as written for the spry repeat; then instantly disappears from the screen.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script type="text/javascript" src="SpryAssets/SpryData.js"></script
    <script type="text/javascript">var A1D1x = new Spry.Data.XMLDataSet("A1D1ACRs_testWxmlCode.xml", "tests/test");</script>
    <title>Test XML Main</title>  
    </head>
    <body>
          <div id="A1D1" spry:region="A1D1x">
                   <table id="A1D1a">
                <tr>
                <th>ID</th>
                <th>Last Name</th>
                <th>Final Status</th>
                </tr>
                <tr spry:repeat="A1D1x">
                    <td>{acr_id}</td>
                    <td>{acr_lastName}</td>
                    <td>{acr_final_status}</td>
                </tr>
                  </table>
             </div>
    </body>
    </html>

  • Spry Conditional Validation of Txt Boxes When Using Show/Hide

    Hi everyone.. just a quick question (if their is such a thing) if that is ok...
    I have been working on this single issue for 3 days.. it is driving me mad and hoped someone may be able to point me in the right direction...
    I have a form and it has a radio button with 3 options (about relationship status):
    Married
    Defacto
    Single
    If they select married a text box appears with Enter spouses first name;
    If they select defacto a text box appears with Enter partners first name..
    If single no text box appears..
    User then clicks on next to go to next page..
    All good.. except.. I am using DW CS4 and using spry to validate both txt boxes (spouses first name and partner first name).. problem is only one will be displayed depending on the option selected – Married or defacto.. spry tries to validate both even the hidden one and therefore will not allow the user to go to next page.. as at least one not completed..
    I have spent almost 3 days trying to write a php/java if statement to get spry to only validate text box 1 or 2 if radio button says married, defacto or single etc..
    I would really really really apperciate your input about how I should do this as it is driving me nuts!!!
    Anyway thanks and really hope to hear from someone..
    Cheers from Downunder
    UPDATE:
    Been playing and got this to work:
    <script type="text/javascript">
    function decision(){
    if(document.martial_status.martial_status[0].checked) {
    <!--
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:blur});
    //-->
    sprytextfield1.reset();
    } else if(document.martial_status.martial_status[1].checked) {
    } else if(document.martial_status.martial_status[2].checked) {
    window.alert("test3");
    } else {
    window.alert("Pick something!!");
    // -->
    </script>
    BUT (and always a but).. if person goes back and selects say single rather then married after already clicking married the spry error msg is already in place for married.. and person cannot go to next page.. The joys.. tried martial_statur.reset and destroy and does clear the error message but still does not allow user to go to next page..
    Any thoughts? Thanks in advance..

    You can destory the validation:
    sprytextfield1.destroy();
    and it should validate.

  • I have a perplexing problem, in firefox the iframe in the spry tabbed panel doesn't work any ideas?

    I have made a page with spry tabbed panels, i have embedded an iframe in the content section of the second tab, this works perfectly well with Google, IE, Safari, Opera etc but just doesnt work in Firefox.
    If I make the tab panel containing the iframe the Default tab then it works, i just cant figure out why,
    By the way new to all this so be gentle please
    <div id="main_column">
         <div class="section_w500">
            <h2>North Bali Listings</h2>
            <div id="TabbedPanels1" class="TabbedPanels">
              <ul class="TabbedPanelsTabGroup">
                <li class="TabbedPanelsTab" tabindex="0">About North Bali</li>
                <li class="TabbedPanelsTab" tabindex="0">Land</li>   <<<<< This is the tab where the iframe is embedded in the content panel>>>>>
                <li class="TabbedPanelsTab" tabindex="0">Houses / Villas /Apartments / Rooms</li>
                <li class="TabbedPanelsTab" tabindex="0">Commercial</li>
    </ul>
              <div class="TabbedPanelsContentGroup">
                <div class="TabbedPanelsContent">A property analyst recently said that limited land availability in the southern parts of Bali, especially  in and around the Badung and Denpasar areas, has driven investors northward, in our opinion   at this time it is an ideal opportunity to  acquire property still at very sensible prices in this area, be it for investment or as a place of residence.. <br />
                  <p> <img src="../../../Images/Bali Scenes General/panoramic-views.jpg" alt="views" width="183" height="140" align="left" />Over the last few of years, investors have been targeting the northern area,  principally along the coastline ,  with its variety of pristine black sandy beaches, pebble beaches and rugged coastline, offering a variety of activities; scuba diving, snorkelling,  water sports, fishing, sailing. trekking  gives this area the potential to be world-class tourist destination. Research has shown that  property prices are set to rise above the average due to increased infrastructure development, and the planned opening of a new International Airport in the North shows the Bali Government's commitment to the develop this area as a future tourist destination.<br />
                    <br />
                    The Northern part of Bali  is also an excellent base for exploration further afield, close to the main portal for trips to other parts of Indonesia. <br />
                  Although it is largely undeveloped there is a wide range of properties and land with beach front to panoramic rice paddy views still to be found at good value for money. </p>
                  <table width="100%">
                    <tr>
                      <td align="left" valign="top"><div class="AreasOfBaliHighlight" style="color: #60C; font-weight: bolder;">This is an ideal time to consider your dream property  in this area; be it for investment, development or private use.</div></td>
                    </tr>
                  </table>
                  <p> The main tourist area in the North is arguably <span style="color: #F00">Lovina</span>, with property prices reflecting this especially beach front or with panoramic views so expect to see prices a little bit more expensive in and around this area. However inland prices are still very reasonable.<br />
                    <br />
                    <img src="../../../Images/Bali Scenes General/Traditional-lifestyle.gif" alt="village life" width="188" height="137" hspace="2" align="right" />Other  areas to be found in the North going towards <span style="color: #F00">Gillimanuk</span> the main portal for the ferry to and from Java; include: <span style="color: #F00">Pemuteran</span> popular diving area, <span style="color: #F00">Menjangan</span> <span style="color: #F00">Island</span>, a popular diving and nature reserve;  are also beginning to attract investors, resulting in  prices  rising.<br />
                    The area of the North of Bali travelling East from <span style="color: #F00">Lovina</span> towards the eastern part of Bali is quieter and more rural, with stunning coastline and secluded traditional village life, here life slows down, people are very friendly and happy to integrate with &quot;Bule (Foreigner), this life style is definitely completely different to the hustle and bustle of the South of Bali, perfect for future development and peaceful retirement, and with the development of the new <span style="color: #F00">International Airport</span> in this area, about 1/2 way between <span style="color: #F00">Singaraja</span> and <span style="color: #F00">Almpura</span> in the East, which makes this area an ideal investment opportunity as property and land prices are set to grow in this part of North Bali faster than other areas.<br />
                    <br />
                    <img src="../../../Images/Bali Scenes General/img_bali_1.jpg" alt="Quiet Lanes" width="189" height="124" hspace="2" align="left" />It has to be said that facilities for schooling, medical services and shopping are not as good as in the South or around Ubud area, which have higher concentrations of  established ex pat communities, and better facilities  also the job opportunities are not anywhere near as plentiful as in the South or Ubud areas, which limits the lifestyle for many people looking to settle in Bali, careful consideration has to be given if your intention is for a place for you to reside, and it is possibly an area for consideration as an investment opportunity, or for a development of hotel or villa resort, or as a second retirement home. </p>
                  <p>There are of course facilities for all the usual services and plenty of job opportunities, and a small but growing ex-pat community, especially in and around <span style="color: #F00">Lovina</span> and <span style="color: #F00">Singaraja</span> just not as many as in the other popular areas for ex pat's. </p>
                </div>
                <div class="TabbedPanelsContent">
                  <p> </p>
                  <table width="100%" border="0">
                    <tr>
                      <td valign="top"><h7 style="color: #C03"><span style="font-weight: bold"><span style="font-size: 12px; color: #FFF;">Property Code BSP 00130101</span><span style="font-size: 16px"> </span>SAMBIRENTENG - North East Bali 7,300 meters (</span></h7>
                        <span style="font-weight: bold; color: #B90033;">73 ARE) Beach front flat wooded land for Sale/ Rent</span></td>
                      <td><span class="button_01"><a href="#" onclick="MM_openBrWindow('North Bali/Gold Package Listings/BSP-00130101/Sambirenteng  Property Location Map.html',width=750,height=200')">Location Map</a></span></td>
                    </tr>
                    <tr>
                      <td width="77%" valign="top"><p>A golden opportunity to acquire a prime plot of beach front land in the North East of Bali in an area that enjoys newly awarded &quot;Tourism Status&quot;  ideal for the development of a small hotel or villa complex, easy access to many popular tourist spots already developing in the North.</p>
                        <p> A 3 meter wide sealed road gives acces to the whole length of this prime plot of land: Electric (PLN) Water (PDAM) Telephone &amp; Internet close to hand and readilly available</p></td>
                      <td width="23%"><a href="Carousel Sambirneteng Listings.html target="_parent"></a><iframe src="Carousel Sambirneteng Listings.html" allowtransparency="yes" frameborder="no" height="111" width="156" scrolling="No" align="middle" marginheight="0"></iframe></td>
                    </tr>
                    <tr>
                      <td valign="top">Purchase price<span style="color: #33C; font-weight: bold;"> 12,500,000,000 Rp</span><br />
                        Rental Price (25 years) <span style="font-weight: bold">9,450,000,000</span> <span style="font-weight: bold">Rp</span> <span style="color: #FFF"> (<span style="font-weight: bold; color: #3333D0;"> 5,200,000 Rp</span><span style="color: #3933D5"> </span> per are per year )<br />
                          Min Rental Period 25 Years, extendable to to a max of 75 years
                          (with full &quot;Right Of Use&quot; issued by owner)</span></td>
                      <td valign="top"><p class="button_01"><a href="../Gold Package Listings/BSP-00130101/BSP00130101 Details.html">Find out more</a></p>
                        <br />
                        <span class="button_01"><a href="../Gold Package Listings/BSP-00130101/BSP00130101_Enquiry Form.html" target="_parent">Make Enquiry</a></span></td>
                    </tr>
                  </table>
                  <p><br />
                  </p>
                  <hr width="100%" noshade="noshade" />
                  <p> </p>
                </div>
    <div class="TabbedPanelsContent">Sorry we don't have any listings under this catagory at the moment,,, Check back later or register with us, and we will send you regular updates of any new properties we list.<iframe src="Carousel Sambirneteng Listings.html" allowtransparency="yes" frameborder="no" height="111" width="156" scrolling="No" align="middle" marginheight="0"></iframe></div>
                <div class="TabbedPanelsContent">Sorry we don't have any listings under this catagory at the moment,,, Check back later or register with us, and we will send you regular updates of any new properties we list.</div>
    </div>
            </div>
            <p> </p>
          <p>
            <h7 style="color: #C03"></h7>
          </p>
    <h2></h2><!-- this stays empty to put dotted line under listings block -->
         </div>
         <div class="cleaner"></div>
        </div> <!-- end of main column -->

    Could you share a link to the page?
    Seeing it in context and in our browsers is much easier to debug.
    If not, make sure to run the validator here The W3C Markup Validation Service and clear out any problems. HTML errors, especially structural ones, will cause all kinds of display problems in various browsers/versions/platforms.

  • Spry Tab link only works once... why?

    Hi all,
    I have a spry tabbed area with 4 tabs on my page. Each tab contains data that is dragged from an MSAccess table. A couple of the tabs have repeat regions. This all works fine.  One of my tabs has a repeat region where I can click on a button image to change a record status from True to False (or visa versa). The click runs the associated vbscript which executes the SQL update statement no problem. However I noticed that when I changed the data on this tab and reloaded the page using a Response.redirect after the sql update was executed, it would default to the 1st tab and not the one I was viewing that contains the repeat region. A quick search led me to the SpryURLUtils.js file which solved that problem by allowing me to specify which tab to load. I appended the relevant code to give me this:
    Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1"
    As I mentioned, the tab contains a repeat region. If I click on a button to change the status of that record the page reloads fine and displays the correct tab. But this only happens once... each subsequent time I try to change another record my tab contents disappear. The tabs are still visible and if I click on the tab where I've changed the data the tab content is dispalayed, but obvioulsy this isn't right... it should reload and display the correct tab with each call of the code.If I navigate away from this page and then come back to it I can successfully chnage one record and the results are displayed. Change another record and the changes are made, but the tab contents are not displayed again. The interesting thing is that if I reload/refresh the page the problem occurs staright away on the first record change.
    So my question is 2-fold... Why is this happening and how do I solve the problem?
    Here is the vbscript that updates the record and  does the Response.redirect
    <%
    'Change Notification
    If (CStr(Request("ToggleNotify")) = "ToggleNotify") Then
    dim strSQL
    'check to see if notification is currently true or false
        If cstr(Request.Form("NotifyChanges")) = Cstr("True") Then
        'change notifiaction to false
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=0 WHERE AccessID = " & Request.Form("hiddenAccessID")
        else
            strSQL = "UPDATE tblUserAccess SET NotifyChanges=-1 WHERE AccessID = " & Request.Form("hiddenAccessID")
        end if
        Set MM_editCmd = Server.CreateObject ("ADODB.Command")
        MM_editCmd.ActiveConnection = MM_VBUsers_STRING
        MM_editCmd.CommandText = strSQL
        MM_editCmd.Execute
        MM_editCmd.ActiveConnection.Close
        Response.Redirect("myrecord.asp?" & Request.QueryString & "&tab=1#TabbedPanels1" )
    End If
    %>
    Here is my Repeat region with the associated form
    <%
    While ((Repeat3__numRows <> 0) AND (NOT rsAccessRights.EOF))
    %>
    <form name="frmNotifications" method="post" action="">
      <tr class="PageText">
        <td width="200"><%=(rsAccessRights.Fields.Item("SectionTitle").Value)%>
            <input type="hidden" name="hiddenAccessID" id="hiddenField2" value="<%=(rsAccessRights.Fields.Item("AccessID").Value)%>">
        </td>
        <td width="200">
                    <%If (CStr((rsAccessRights.Fields.Item("NotifyChanges").Value)) = CStr("True")) Then %>
              <input type="image" src="../sitegraphics/accept.png" alt="Submit button">
            <%else%>
              <input type="image" src="../sitegraphics/cross.png" alt="Submit button">
            <%end if%>
        <input type="hidden" name="ToggleNotify" value="ToggleNotify">
        <input type="hidden" name="NotifyChanges" id="test" value="<%=cstr((rsAccessRights.Fields.Item("NotifyChanges").Value))%>">
       </td>
    </tr>
    </form>
      <%
      Repeat3__index=Repeat3__index+1
      Repeat3__numRows=Repeat3__numRows-1
      rsAccessRights.MoveNext()
    Wend
    %>
    And here is the bit at the bottom that specifies the default tab if nothing is passed in the URL
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    //-->
    </script>
    Sorry for the long post!
    This is my first dabble with Spry stuff, so I'm a bit green. If anyone can explain to me why this is happening that would be most apopreciated. If anyone can tell me how to solve the problem I'll send them a big e-kiss!
    Not sure how impotant this is but it happens in both Firefox and IE8.
    Thanks in advance
    Dan

    Hi Ben, thanks for taking the time to read my query.
    The site in question is an intranet site, so I am unable to give you a link to the page. Would the entire page of code rather than just the odd bits help?
    Cheers
    Dan

  • Spry is undefined, sp2 is null or not an object error in IE

    Hi everyone,
    I have a problem working with Spry Sliding panels. It is working fine in chrome, safari. But it is not working in IE and FF
    I am on IE8 and FF3
    I also upgraded to the latest version of Spry i.e Spry 1.6.1
    The website is in development.
    Here is the source code of my page------------------
    <head>
         <link href="cssandajax/SprySlidingPanels.css" rel="stylesheet" type="text/css" />
         <link href="cssandajax/style.css" rel="stylesheet" type="text/css" />
         <script language="JavaScript" src="cssandajax/ajax.js" type="text/javascript"/>
         <script language="JavaScript" src="cssandajax/SprySlidingPanels.js" type="text/javascript"></script>
         <script language="JavaScript" src="cssandajax/XPath.js" type="text/javascript" ></script>
         <script language="JavaScript" src="cssandajax/rotate1.3.js" type="text/javascript" ></script>
    </head>
    <body style="background-color: #1E1101;">
    <div id="bodywrapper">
    <div id="leftheading">
    <div id="logobody">
    <a href="http://localhost:8080/HudsonFurniture/"><img src="images/logo.jpg" style="border-style:none;"></img></a>
    </div>
    <div id="lefttext">
    <div class="navigation"><a href="#" onclick="sp2.showPanel('furniture'); return false;"><img src="images/test/furniture.jpg" style="border-style:none;"></img></a></div>
    <div class="innernav">
    <div>
    <div id="furnav"><a href="#" onclick="sp2.showPanel('tables'); return false;">TABLES</a>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Dining.jsp">Dining</a></div>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Coffee.jsp">Coffee</a></div>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/EndSide.jsp">End/Side</a></div>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Desks.jsp">Desks</a></div>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Consoles.jsp">Consoles</a></div>
    </div>
    <div id="furnav"><a href="#" onclick="sp2.showPanel('seating'); return false;">SEATING</a>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Sofas.jsp">Sofas</a></div>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Benches.jsp">Benches</a></div>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Chairs.jsp">Chairs</a></div>
    <div id="furinnnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Stools.jsp">Stools</a></div>
    </div>
    <div id="furnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Beds.jsp">BEDS</a></div>
    <div id="furnav"><a href="http://localhost:8080/HudsonFurniture/Home/Furniture/Storage.jsp">STORAGE</a></div>
    <div id="furnav"><a href="http://localhost:8080/HudsonFurniture/Home/Accessories.jsp">ACCESSORIES</a></div>
    </div>
    </div>
    <div class="navigation"><a href="#" onclick="sp2.showPanel('lighting'); return false;"><img src="images/test/lighting.jpg" style="border-style: none;"></img></a></div>
    <div class="innernav">
    <div>
    <div id="lignav"><a href="http://localhost:8080/HudsonFurniture/Home/Lighting/Chandeliers.jsp">CHANDELIERS</a></div>
    <div id="lignav"><a href="http://localhost:8080/HudsonFurniture/Home/Lighting/Pendants.jsp">PENDANTS</a></div>
    <div id="lignav"><a href="http://localhost:8080/HudsonFurniture/Home/Lighting/CeilingLights.jsp">CEILING LIGHTS</a></div>
    <div id="lignav"><a href="http://localhost:8080/HudsonFurniture/Home/Lighting/Sconces.jsp">SCONCES</a></div>
    <div id="lignav"><a href="http://localhost:8080/HudsonFurniture/Home/Lighting/FloorLamps.jsp">FLOOR LAMPS</a></div>
    <div id="lignav"><a href="http://localhost:8080/HudsonFurniture/Home/Lighting/TableLamps.jsp">TABLE LAMPS</a></div>
    </div>
    </div>
    <div class="navigation"><a href="#" onclick="sp2.showPanel('outdoor'); return false;"><img src="images/test/outdoor.jpg" style="border-style: none;"></img></a></div>
    <div class="innernav">
    <div></div>
    </div>
    <div class="navigation"><a href="#" onclick="sp2.showPanel('concepts'); return false;"><img src="images/test/concepts.jpg" style="border-style: none;"></img></a></div>
    <div class="innernav">
    <div></div>
    </div>
    <div class="navigation"><a href="#" onclick="sp2.showPanel('about'); return false;"><img src="images/test/about.jpg" style="border-style: none;"></img></a></div>
    <div class="innernav">
    <div></div>
    </div>
    <div class="navigation"><a href="#"><img src="images/test/search.jpg" style="border-style: none;"></img></a></div>
    <div class="innernav">
    <div>
    <div id="furnav">
    <form action="servlet/Hudson" method="post">
    <div id="furinnnav"><input type="text" name="query" value="Enter query" onfocus="this.value='';setbg('#e5fff3');"></div>
    <div id="furinnnav">
    <select name="catagory" width="50px">
    <option>Furniture
    <option>Lighting
    <option>Accessories
    </select>
    <input type="hidden" name="status" value="searchform">
    </div>
    <div id="furinnnav"><input type="submit" name="submit" value="Search"><br/></div>
    </form>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div id="topheading">
    <img src="images/rotatebanners/banner1.jpg" alt="topheading Image 1" class="active" height="130px" width="718px"></img>
    <img src="images/rotatebanners/banner2.jpg" alt="topheading Image 2" height="130px" width="718px"></img>
    <img src="images/rotatebanners/banner3.jpg" alt="topheading Image 3" height="130px" width="718px"></img>
    <img src="images/rotatebanners/banner4.jpg" alt="topheading Image 4" height="130px" width="718px"></img>
    <img src="images/rotatebanners/banner5.jpg" alt="topheading Image 5" height="130px" width="718px"></img>
    </div>
    <pre><code class="mix">$('#topheading').cycle();</code></pre>
    <div id="maincenter">
    <div id="dynamiccontent" class="SlidingPanels">
    <div class="SlidingPanelsContentGroup">
    <div id="furniture" class="SlidingPanelsContent p1">
    <div class="innercontent">
    <div id="image1" style='display:block; position: absolute; top: 0px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/1.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image2" style='display:block; position: absolute; top: 0px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/2.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image3" style='display:block; position: absolute; top: 0px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('coffee1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/3.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image4" style='display:block; position: absolute; top: 205px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/4.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image5" style='display:block; position: absolute; top: 205px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/5.jpg" width='240px' height='205px' style='borderstyle: none;'></img></div>
    <div id="image6" style='display:block; position: absolute; top: 205px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/6.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image7" style='display:block; position: absolute; top: 410px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/7.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image8" style='display:block; position: absolute; top: 410px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/8.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image9" style='display:block; position: absolute; top: 410px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/9.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id='vertborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 240px;'> </div>
    <div id='vertborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 480px;'> </div>
    <div id='horborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 205px; left: 0px;'> </div>
    <div id='horborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 410px; left: 0px;'> </div>
    </div>
    </div>
    <div id="lighting" class="SlidingPanelsContent p2">
    <div class="innercontent">
    <div id="image1" style='display:block; position: absolute; top: 0px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/1.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image2" style='display:block; position: absolute; top: 0px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/2.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image3" style='display:block; position: absolute; top: 0px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('coffee1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/3.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image4" style='display:block; position: absolute; top: 205px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/4.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image5" style='display:block; position: absolute; top: 205px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/5.jpg" width='240px' height='205px' style='borderstyle: none;'></img></div>
    <div id="image6" style='display:block; position: absolute; top: 205px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/6.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image7" style='display:block; position: absolute; top: 410px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/7.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image8" style='display:block; position: absolute; top: 410px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/8.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image9" style='display:block; position: absolute; top: 410px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/9.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id='vertborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 240px;'> </div>
    <div id='vertborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 480px;'> </div>
    <div id='horborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 205px; left: 0px;'> </div>
    <div id='horborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 410px; left: 0px;'> </div>
    </div>
    </div>
    <div id="outdoor" class="SlidingPanelsContent p3">
    <div class="innercontent">
    <div id="image1" style='display:block; position: absolute; top: 0px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/1.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image2" style='display:block; position: absolute; top: 0px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/2.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image3" style='display:block; position: absolute; top: 0px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('coffee1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/3.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image4" style='display:block; position: absolute; top: 205px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/4.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image5" style='display:block; position: absolute; top: 205px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/5.jpg" width='240px' height='205px' style='borderstyle: none;'></img></div>
    <div id="image6" style='display:block; position: absolute; top: 205px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/6.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image7" style='display:block; position: absolute; top: 410px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/7.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image8" style='display:block; position: absolute; top: 410px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/8.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image9" style='display:block; position: absolute; top: 410px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/9.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id='vertborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 240px;'> </div>
    <div id='vertborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 480px;'> </div>
    <div id='horborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 205px; left: 0px;'> </div>
    <div id='horborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 410px; left: 0px;'> </div>
    </div>
    </div>
    <div id="concepts" class="SlidingPanelsContent p4">
    <div class="innercontent">
    <div id="image1" style='display:block; position: absolute; top: 0px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/1.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image2" style='display:block; position: absolute; top: 0px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/2.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image3" style='display:block; position: absolute; top: 0px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('coffee1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/3.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image4" style='display:block; position: absolute; top: 205px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/4.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image5" style='display:block; position: absolute; top: 205px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/5.jpg" width='240px' height='205px' style='borderstyle: none;'></img></div>
    <div id="image6" style='display:block; position: absolute; top: 205px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/6.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image7" style='display:block; position: absolute; top: 410px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/7.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image8" style='display:block; position: absolute; top: 410px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/8.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image9" style='display:block; position: absolute; top: 410px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/9.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id='vertborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 240px;'> </div>
    <div id='vertborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 480px;'> </div>
    <div id='horborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 205px; left: 0px;'> </div>
    <div id='horborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 410px; left: 0px;'> </div>
    </div>
    </div>
    <div id="about" class="SlidingPanelsContent p5">
    <div class="innercontent">
    <p>
    <span>ABOUT</span>
    </p>
    </div>
    </div>
    <div id="tables" class="SlidingPanelsContent p6">
    <div class="innercontent">
    <div id="image1" style='display:block; position: absolute; top: 0px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/1.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image2" style='display:block; position: absolute; top: 0px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/2.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image3" style='display:block; position: absolute; top: 0px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('coffee1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/3.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image4" style='display:block; position: absolute; top: 205px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('dining1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/4.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image5" style='display:block; position: absolute; top: 205px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/5.jpg" width='240px' height='205px' style='borderstyle: none;'></img></div>
    <div id="image6" style='display:block; position: absolute; top: 205px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/6.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image7" style='display:block; position: absolute; top: 410px; left: 0px; width: 240px; min-height: 205px; max-height: 205px;'><img src="http://localhost:8080/HudsonFurniture/images/tables/7.jpg" width='240px' height='205px' style='border-style: none;'></img></div>
    <div id="image8" style='display:block; position: absolute; top: 410px; left: 240px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/8.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id="image9" style='display:block; position: absolute; top: 410px; left: 480px; width: 240px; min-height: 205px; max-height: 205px;'><a href="#" onclick="sp2.showPanel('endside1',function(){Spry.Data.initRegions();}); return false;"><img src="http://localhost:8080/HudsonFurniture/images/tables/9.jpg" width='240px' height='205px' style='border-style: none;'></img></a></div>
    <div id='vertborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 240px;'> </div>
    <div id='vertborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-y;min-height: 615px;max-height: 615px;position: absolute; top: 0px; left: 480px;'> </div>
    <div id='horborder1' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 205px; left: 0px;'> </div>
    <div id='horborder2' style='display:block; background-image: url("images/line1.jpg");background-repeat: repeat-x;min-height: 1px;max-height: 1px;min-width: 720px;max-width: 720px;position: absolute; top: 410px; left: 0px;'> </div>
    </div>
    </div>
    <div id="seating" class="SlidingPanelsContent p12">
    <div class="innercontent">
    <p>
    <span>SEATING</span>
    Hudson Furniture Inc. respects the natural forms of trees and inherent grain of wood with well defined organic lines and geometric forms using traditional joinery techniques and hand rubbed oil finishes.
    All Hudson furniture is available in custom dimensions, custom finishes and a variety of wood species such as Claro Walnut, Black Walnut, Myrtle, Jasmine, Acacia, Satinwood and Ebonized Pine.
    None of the woods we use are harvested from old growth forests. Our wood slabs are domestically sourced from either salvaged trees or wind/storm damaged trees. The trees have an average life span of 250-300 years.
    When these trees die, they gradually do so from the crest to the roots. The farmers or the tree owners thus have to remove these trees as they might cause damage to houses, other trees or outlying areas.
    We integrate various wood species into our designs to produce unique works of art.
    <br/></br/><br/>
    " We put high regard and value on these trees by turning them into pieces of enduring art instead of leaving them out to decay ", Barlas Baylar, Hudson Furniture Inc. founder and designer.
    <br/><br/>
    Hudson Furniture Inc. is also New York's only repository for legally harvested petrified wood. For Hudson Furniture Inc. it was second nature to explore petrified wood as an extension of its already existing collection of organic contemporary designs.
    Petrified wood, having the visual characteristics of wood but the feel of stone, represents a contemporary fusion of the two original materials into a new compelling organic interior accessory.
    Hudson Furniture Inc.'s owner Barlas Baylar takes extra precaution with embassies and consulates to seek approvals and legalities of petrified wood exportation from all regions of the world.
    Hudson Furniture Inc. has also recently added a line of solid walnut furniture designs by startchitects Renzo Piano, Mario Botta and Terry Dwan.
    </p>
    </div>
    </div>
      </div>
    </div>
    <script type="text/javascript">
    var sp2 = new Spry.Widget.SlidingPanels('dynamiccontent');
    </script>
    </div>
    <div id="footer">
    <center>
    <a href="http://localhost:8080/HudsonFurniture/Home/Contact.jsp">Contact</a>  |  
    <a href="http://localhost:8080/HudsonFurniture/Home/Catalog.jsp">Catalog</a>  |  
    <a href="http://localhost:8080/HudsonFurniture/Home/Press.jsp">Press</a>
    </center>
    </div>
    </div>
    </body>
    </html>
    Can nyone please help me. Its very important for me. Thanks in advance.

    Make sure your Spry files are in the correct folder. As its not found for some reason. You might also wanna check your server settings as you are using working from local host.
    If all fails, upload a it to a public url.

  • Spry Validation For PHP Form

    Hello All,
    I am currently using the Spry Validation within Dreamweaver 5.1.1 and it was working in my development environment until yesterday. I did not change directories so I believe it is not an issue with my file structure.  Below you will see my baic form set up and for some reason, when I load my page, all of the spry error messages are visable. Previously, the page would load and it would not appear until there was an error after submitting the page.  Maybe I'm missing something but an extra pair of eyes does not hurt.  The ".textfieldRequiredMsg" class displays automatically when it is set in the css file to "display: none:".
    I'm stumped:
    <meta http-equiv="X-UA-Compatible" content="IE=100"> <!-- IE fights me on forms -->
    <title>Company Name</title>
    <link rel="stylesheet" href="css/style.css" media="screen">
    <!--[if IE]>
    <link rel="stylesheet" href="css/ie.css" media="screen"?
    <![endif] -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script src="js/jquery.placeholder.js"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <form action="calltoaction/contact.php" id="contact" style="margin-top: -20px;" method="post" name="contact">
                      <div class="row">
                            <div class="left"><span id="sprytextfield1">
                            <input id="name" placeholder="Name" type="text" name="Name" autofocus required>
                            <span class="textfieldRequiredMsg">A value is required.</span></span></div>  
                             <div class="left">
                               <input id="pharmacyname" placeholder="Pharmacy Name" type="text" name="BusinessName" required>
                            </div>               
                       </div>
              <div class="row">
              <div class="left">
                <input id="telephone" placeholder="Please provide your contact number" name="Phone" required>
               </div>
              <div class="left">
              <input id="email" placeholder="Email Address" name="Email" required>
             </div>
              </div>
              <div class="row">
                            <div class="left">
                                <div class="styledselect">
                                  <select style="width:400px; color: #898888; height: 42px;" tabindex="2" name="Subject" id="Subject">
                                    <option value="select">What can we help you with? Click to select an option.</option>
                                    <option value="website comments">New Website Comments</option>
                                    <option value="ordering">Ordering</option>
                                    <option value="order status">Order Status</option>
                                    <option value="csos">CSOS Setup</option>
                                    <option value="payments credits">Payments &amp; Credits</option>
                                    <option value="contact account manager">Contact My Account Manager</option>
                                    <option value="email list">Join Email List</option>
                                    <option value="monthly newsletter">Sign Up For Monthly Newsletter</option>
                                    <option value="rewards">Auburn REWARDS Free Goods</option>
                                    <option value="reset password">Reset User ID/Password</option>
                                    <option value="questions">Questions</option>
                                    <option value="suggestions">Suggestions</option>
                                    <option value="other">Other (Please Specify)</option>
                                  </select>
                                </div>
                                <!-- end select style-->
                </div>
              </div>
              <div class="commentbox">
                                  <div class="left">
                                    <textarea id="styled" placeholder="Please type your message here" name="Comments" required></textarea>
                                     </div>
              </div>
              <div class="row">
                                  <div class="left">
                                  <input type="image" src="images/contact_submit.png" name="submit" width="85" height="38" id="submitbutton">
                </div>
              </div>
                       <div class="row">
                        <div class="left required"><em>*All fields are required.</em></div>
              </div>
            </form>
    <script>
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["change"]});
    </script>
    </body>
    </html>

    That's what is driving me crazy. The code appears correctly.  The DOCTYPE is:
    <!DOCTYPE HTML>
    I've attached a screenshot of the page once it loads without submitting the actual form and the spry settings in Dreamweaver.
    Thanks!

  • Spry Validation Error in Internet Explorer

    Hi,
    I have a PHP form with Spry Validation for Textfields and Selction.
    The init part in the HTML form looks like this:
          var spryradioanrede = new Spry.Widget.ValidationRadio("spryradioanrede", {isRequired:true, validateOn:["change,blur"]});
           var sprytextfieldvorname = new Spry.Widget.ValidationTextField("sprytextfieldvorname", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldnachname = new Spry.Widget.ValidationTextField("sprytextfieldnachname", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldstrasse = new Spry.Widget.ValidationTextField("sprytextfieldstrasse", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldhausnummer = new Spry.Widget.ValidationTextField("sprytextfieldhausnummer", "none", {  validateOn:["change,blur"]});
           var sprytextfieldplz = new Spry.Widget.ValidationTextField("sprytextfieldplz", "none", {useCharacterMasking:true, pattern:"00000", validateOn:["change,blur"]});
           var sprytextfieldort = new Spry.Widget.ValidationTextField("sprytextfieldort", "none", {isRequired:true,  validateOn:["change,blur"]});
           var sprytextfieldemail = new Spry.Widget.ValidationTextField("sprytextfieldemail", "email", { validateOn:["change,blur"]});
           var sprytextfieldvorwahl = new Spry.Widget.ValidationTextField("sprytextfieldvorwahl", "none", {validation:isNumeric,isRequired:false,  validateOn:["change,blur"]});
           var sprytextfieldrufnummer = new Spry.Widget.ValidationTextField("sprytextfieldrufnummer", "none", {validation:isNumeric, isRequired:false,  validateOn:["change,blur"]});
           var sprytextfieldausweisnummer = new Spry.Widget.ValidationTextField("sprytextfieldausweisnummer", "none", {validation:isValididentitycard,  validateOn:["blur"]});
           var sprytextfieldstaatsangehoerigkeit = new Spry.Widget.ValidationTextField("sprytextfieldstaatsangehoerigkeit", "none", {isRequired:true,  validateOn:["change,blur"]});             
           var spryselectfieldtag = new Spry.Widget.ValidationSelect("spryselectfieldtag", {isRequired:true, validateOn:["change,blur"]});
           var spryselectfieldmonat = new Spry.Widget.ValidationSelect("spryselectfieldmonat", {isRequired:true, validateOn:["change,blur"]});
           var spryselectfieldjahr = new Spry.Widget.ValidationSelect("spryselectfieldjahr", {isRequired:true, validateOn:["change,blur"]});
    When loading the page an error in Internet Explorer 8 occures:
    Error Details from IE:
    Benutzer-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MDDR; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Zeitstempel: Mon, 31 Aug 2009 08:54:38 UTC
    Meldung: 'this.input.defaultValue' ist Null oder kein Objekt
    Zeile: 1734
    Zeichen: 2
    Code: 0
    URI: http://.../SpryAssets/SpryValidationTextField.js
    When loading the page the first time it's not a big problem. But when the users enters some unvalid data the page lodes again and in the onload section from the body the function validateall is startet.
    function validateall()    {
                    status = 0;
                    status += spryradioanrede.validate();
                    status += sprytextfieldvorname.validate();
                    status += sprytextfieldnachname.validate();
                    status += sprytextfieldstrasse.validate();
                    status += sprytextfieldstrasse.validate();
                    status += sprytextfieldplz.validate();
                    status += sprytextfieldort.validate();
                    status += sprytextfieldemail.validate()
                    status += sprytextfieldvorwahl.validate();
                    status += sprytextfieldrufnummer.validate();
                    status += sprytextfieldausweisnummer.validate();
                    status += sprytextfieldstaatsangehoerigkeit.validate();
                    status += spryselectfieldtag.validate();
                    status += spryselectfieldmonat.validate();
                    status += spryselectfieldjahr.validate();
                    if (status < 15) {
                        return 0;
                    } else {
                        return 1;
    The error occurs again and the validation is not yet done. Which means, that the fields with problems will not be marked. When entering the field afterward and changing or blur everything works ok and the field is marked in red. Only the onload is not working.
    Any ideas, what the problem is?
    Thank
    Michael

    It seems to be an Error in Spry,
    Open the SpryValidationTextField.js
    find:
    Spry.Widget.ValidationTextField.prototype.reset = function() {
         this.removeHint();
         this.oldValue = this.input.defaultValue;
         this.resetClasses();
         if (Spry.is.ie) {
              //this will fire the onpropertychange event right after the className changed on the container element
              //IE6 will not fire the first onpropertychange on an input type text after a onreset handler if inside that handler the className of one of the elements inside the form has been changed
              //to reproduce: change the className of one of the elements inside the form from within the onreset handler; then the onpropertychange does not fire the first time
              this.input.forceFireFirstOnPropertyChange = true;
              this.input.removeAttribute("forceFireFirstOnPropertyChange");
         var self = this;
         setTimeout(function() {self.putHint();}, 10);
    and replace with:
    Spry.Widget.ValidationTextField.prototype.reset = function() {
         this.removeHint();
         this.oldValue = this.input && this.input.defaultValue ? this.input.defaultValue : "";
         this.resetClasses();
         if (Spry.is.ie) {
              //this will fire the onpropertychange event right after the className changed on the container element
              //IE6 will not fire the first onpropertychange on an input type text after a onreset handler if inside that handler the className of one of the elements inside the form has been changed
              //to reproduce: change the className of one of the elements inside the form from within the onreset handler; then the onpropertychange does not fire the first time
              this.input.forceFireFirstOnPropertyChange = true;
              this.input.removeAttribute("forceFireFirstOnPropertyChange");
         var self = this;
         setTimeout(function() {self.putHint();}, 10);
    To see if it helps

  • Spry Autosuggest: Show All

    Does anyone know of a way to make the Spry AutoSuggest Widget show all options when you first click on it?
    var SpryAutoSuggest3 = new Spry.Widget.AutoSuggest('statusform', 'suggestedStatus', 'dsStatus', 'statusType', {loadFromServer: true, urlParam: 'status'});
    This grabs the data from the XML file as you type it. The XML is database generated on the fly. The XML either shows all the options, or just the ones beginning with the string passed to it from the form field.
    I just want to show all the options when the field is first clicked, and allow them to type if they want to filter it down. My only other option is a normal select list, but thats not as fun
    Cheers,
    Steve

    You can manually try to trigger the `onPostLoad` event: dsFaultCodes.notifyObservers('onPostLoad')
    As usual I answer my own question just moments after posting it!
    function showList(event){
        dsFaultCodes.removeAllFilters(true);
        dsFaultCodes.loadData();
        SpryAutoSuggest.showSuggestions(true);
    This does work, but only once, if you clear the field and try to start again it wont list them all, just the last one you selected. For some reason the removeAllFilters isn't working.
    Any ideas?
    Cheers,
    Steve
    >

  • Spry tabbed panels display

    I have Spry Tabbed panels and all my content is suddenly displaying in the first, default tab.  Also, the turquoise "Spry Tabbed Panels" is missing from the top of my widget. This has happened on three different pages so far, and all I have found is that I must insert a new tabbed panel.  My <div> codes all match up, so I'm stumped.  Any help would be really appreciated.

    Source Code in this post
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/base_template.dwt" codeOutsideHTMLIsLocked="false" -->
        <head>
        <!-- InstanceBeginEditable name="doctitle" -->
        <title>BCCA Library - Abstracts</title>
        <meta name="Description" content="Designed and developed by Codify Design Studio - codifydesign.com" />
        <!-- InstanceEndEditable -->
        <link rel="stylesheet" type="text/css" href="stylesheet.css" />
        <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
        <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
        <!-- InstanceBeginEditable name="head" -->
        <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
        <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
        <!-- InstanceEndEditable -->
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <!-- InstanceParam name="Content Left" type="boolean" value="true" -->
        <!-- InstanceParam name="Content Right" type="boolean" value="true" -->
    </head>
        <body>
            <div class="bannerArea">
          <div class="container">
                    <div class="bannernav"><a href="http://www.bccancer.bc.ca/" target="_blank" >BC Cancer Agency</a> &bull; <a href="http://POD" target="_blank" >POD</a> &bull; <a href="http://www.phsa.ca" target="_blank" >PHSA </a>&bull; <a href="mailto:[email protected]?subject='Contact Us' from Library Links" >Contact Us</a></div>
                    <div class="toplogo"><a href="index.html" target="_parent"><img src="images/liblinks_infobase.png" alt="Library Links Home Page" hspace="135" border="0" /></a></div>
                    <div style="clear:both;"></div>
              </div>
        </div>
            <div class="topnavigationArea">
                <div class="container">
                    <div class="topnavigationgroup">
                        <ul id="MenuBar1" class="MenuBarHorizontal">
                          <li><a href="databases.html" class="MenuBarItemSubmenu">Databases</a>
                            <ul>
                              <li><a href="databases.html">All Databases</a></li>
                              <li><a href="remote.html">Remote Access</a></li>
                              <li><a href="mobile.html">Mobile Resources</a></li>
    <li><a href="training_bcca.html">Training</a></li>
    <li><a href="autoalerts.html">AutoAlerts</a></li>
    <li><a href="primal.html">Primal Pictures</a></li>
                            </ul>
                          </li>
                          <li><a class="MenuBarItemSubmenu" href="journals.html">Journals</a>
                            <ul>
                              <li><a href="journals.html" class="MenuBarItemSubmenu">Journals</a>
                                <ul>
                                  <li><a href="http://atoz.ebsco.com/home.asp?Id=BCCA230F" target="_blank">BCCA A-Z e-journals</a></li>
                                  <li><a href="http://bcca.andornot.com/results.aspx?TN=bccacat&QY=find%20(Format%20ct%20Serial)%20not%20 (Status%20%3DDiscarded%20%2F%20%3DMissing)%20and%20(Location%20ct%20library)&RF=WebBriefDa te&DF=WebFull&BU=http%3A%2F%2Fbcca.andornot.com%2Fdefault.htm&MR=10&NP=255&RL=0&DL=0&MF=bc cawpmsg.ini&AC=QBE_QUERY" target="_blank">Print Journals BCCA</a></li>
                                  <li><a href="http://toby.library.ubc.ca/ejournals/ejournals.cfm/" title="UBC Print and E-journals" target="_blank">UBC Journals</a></li>
    <li><a href="mailto:[email protected]?subject=Request articles" title="Request articles from BCCA Library">Request Articles</a></li>
                                </ul>
                              </li>
                              <li><a href="ebooks.html">E-books</a></li>
                              <li><a href="abstracts.html">Abstracts/Conferences</a></li>
                              <li><a href="remote.html">Remote Access</a></li>
                              <li><a href="mailto:[email protected]?subject=Request articles">Request Articles</a></li>
                            </ul>
                          </li>
                          <li><a href="refworks.html">RefWorks</a></li>
                          <li><a href="catalogues.html" class="MenuBarItemSubmenu">Catalogues</a>
                            <ul>
                              <li><a href="catalogues.html">Catalogues</a></li>
                              <li><a href="http://bcca.andornot.com/" title="BCCA Library Catalogue" target="_blank" class="MenuBarItemSubmenu">BCCA</a>
                                <ul>
                                  <li><a href="http://bcca.andornot.com/topics.htm" title="Automated Searches" target="_blank">Popular Topics</a></li>
                                  <li><a href="ebooks.html" target="_blank">E-books</a></li>
    <li><a href="http://tinyurl.com/4jmvwpn" title="Books added this month" target="_blank">BCCA New Books</a></li>
                                </ul>
                              </li>
                              <li><a href="http://library.ubc.ca/" title="UBC Library Catalogue" target="_blank" class="MenuBarItemSubmenu">UBC</a>
                                <ul>
                                  <li><a href="http://toby.library.ubc.ca/ejournals/ejournals.cfm/" title="UBC Print and E-journals" target="_blank">UBC Journals</a></li>
                                  <li><a href="http://webcat2.library.ubc.ca/vwebv/searchBasic/" title="UBC Books &amp; more" target="_blank">UBC Books</a></li>
                                  <li><a href="http://services.library.ubc.ca/borrowing/library-cards/" target="_blank">UBC Library Cards</a></li>
                                  <li><a href="http://www.it.ubc.ca/cwl/homelink.shtml/" title="Campus Wide Login" target="_blank">Campus Wide Login</a></li>
                                  <li><a href="http://www.library.ubc.ca/home/proxyinfo/" title="Connect from Home" target="_blank">VPN / EZ Proxy</a></li>
                                  <li><a href="mailto:[email protected]?subject=Request Articles" title="Request from BCCA Library">Request Articles</a></li>
                                </ul>
                              </li>
                              <li><a href="http://library.sfu.ca/" title="SFU Library Catalogue" target="_blank">SFU</a></li>
                              <li><a href="http://www.bcit.ca/library/" title="BCIT Library Catalogue" target="_blank">BCIT</a></li>
                              <li><a href="http://www.ncbi.nlm.nih.gov/sites/entrez?db=nlmcatalog" title="National Library of Medicine Catalogue" target="_blank">NLM (U.S.)</a></li>
                              <li><a href="http://library.unbc.ca/" title="UNBC Library Catalogue" target="_blank">UNBC </a></li>
                              <li><a href="http://www.ubc.ca/okanagan/library/welcome.html" title="UBC Okanagan Library" target="_blank">UBC Okanagan</a></li>
                              <li><a href="http://library.uvic.ca/" title="U Vic Library Catalogue" target="_blank">U Victoria</a></li>
                              <li><a href="http://www.vpl.ca/" title="Vancouver Public Library" target="_blank">Vancouver Public </a></li>
                            </ul>
                          </li>
                          <li><a href="professional.html" class="MenuBarItemSubmenu">Professional Practice</a>
                            <ul>
    <li><a href="abstracts.html">Abstracts/Conferences</a></li>
    <li><a href="admin.html">Administration</a></li>
    <li><a href="guidelines.html">Cancer Guidelines</a></li>
                              <li><a href="nursing.html">Nursing</a></li>
                              <li><a href="nutrition.html">Nutrition</a></li>
                              <li><a href="pharmacy.html">Pharmacy</a></li>
                              <li><a href="physicians.html">Physicians</a></li>
                              <li><a href="psychosocial.html">Psychosocial</a></li>
                              <li><a href="rt.html">RT / Physics</a></li>
                              <li><a href="researchers.html">Researchers</a></li>
                              <li><a href="writers.html">Writing &amp; Authors</a></li>
                            </ul>
                          </li>
                          <li><a href="training_bcca.html" class="MenuBarItemSubmenu">Training</a>
                            <ul>
                              <li><a href="training_bcca.html" class="MenuBarItemSubmenu">Training Home Page</a>
                                <ul>
                                  <li><a href="orientations.html" title="Staff Orientations">Staff Orientations</a></li>
    <li><a href="training_ac.html">AC Training</a></li>
                                  <li><a href="training_csi.html" title="CSI Training">SAHCSI Training</a></li>
                                  <li><a href="training_fvc.html">FVC Training</a></li>
                                  <li><a href="training_vc.html" title="VC Training">VC Training</a></li>
                                  <li><a href="training_vic.html">VIC Training</a></li>
                                </ul>
                              </li>
                              <li><a href="https://edreg.cw.bc.ca/phsaedcalendar/Home.aspx" target="_blank">Learning Hub</a></li>
                              <li><a href="orientations.html" title="Staff Orientations">Staff Orientations</a></li>
                              <li><a href="primal.html">Primal Pictures</a></li>
                            </ul>
                          </li>
                          <li><a href="library.html" class="MenuBarItemSubmenu">Library Services</a>
                            <ul>
    <li><a href="#" class="MenuBarItemSubmenu">Contacts &amp; Info</a>
      <ul>
    <li><a href="../Documents/VC_Staff_Information_Sheet.pdf">VC - Vancouver</a></li>
    <li><a href="../Documents/VIC_Staff_Information_Sheet.pdf">VIC - Victoria</a></li>
    <li><a href="../Documents/SAHCSI_Staff_Information_Sheet.pdf">SAHCSI - Kelowna</a></li>
    <li><a href="../Documents/FVC_Staff_Information_Sheet.pdf">FVC - Surrey</a></li>
    <li><a href="../Documents/AC_Staff_Information_Sheet.pdf">AC - Abbotsford</a></li>
    <li><a href="../Documents/CN_Staff_Information_Sheet_Library.pdf">CN - Prince George</a></li>
    <li><a href="http://www.bccancer.bc.ca/PPI/Library/Contacts.htm" target="_blank">Library webpage</a></li>
      </ul>
    </li>
    <li><a href="mailto:[email protected]?subject=Request a Search" title="Request a Search">Request a Search</a></li>
    <li><a href="mailto:[email protected]?subject=Request Article(s)" title="Request Articles">Request Articles</a></li>
                              <li><a href="http://www.bccancer.bc.ca/PPI/RecommendedLinks/default.htm" target="_blank">Recommended Websites</a></li>
                              <li><a href="autoalerts.html" title="AutoAlert Searches">AutoAlert Searches</a></li>
                              <li><a href="orientations.html" title="Staff Orientations">Staff Orientations</a></li>
                              <li><a href="pamphlets.html" title="May need an install from IMIT">Pamphlets Database</a></li>
                              <li><a href="publications.html">Publications</a></li>
                              <li><a href="copyright.html" title="Copyright">Copyright</a></li>
                              <li><a href="patients_reading.html">What patients are reading</a></li>
                              <li><a href="patients.html" title="Services for Patients">Services for Patients</a></li>
                              <li><a href="archives.html">Archives</a></li>
                            </ul>
                          </li>
                        </ul>
    </div>
                    <div style="clear:both;"> </div>
                </div>
            </div>
            <div class="contentArea">
                <div class="container">
                <!-- InstanceBeginEditable name="Content Left" -->
                <div class="contentleft">
                  <h1>Abstracts and Conferences</h1>
                  <div id="TabbedPanels1" class="VTabbedPanels">
                    <ul class="TabbedPanelsTabGroup">
                      <li class="TabbedPanelsTab" tabindex="0"> AACR</li>
                      <li class="TabbedPanelsTab" tabindex="0"> ASCO</li>
                      <li class="TabbedPanelsTab" tabindex="0"> ASH</li>
                      <li class="TabbedPanelsTab" tabindex="0"> ASTRO</li>
                      <li class="TabbedPanelsTab" tabindex="0"> CARO</li>
                      <li class="TabbedPanelsTab" tabindex="0"> ECCO</li>
                      <li class="TabbedPanelsTab" tabindex="0"> ESMO</li>
                      <li class="TabbedPanelsTab" tabindex="0"> ESTRO</li>
                      <li class="TabbedPanelsTab" tabindex="0"> ISPOR</li>
                      <li class="TabbedPanelsTab" tabindex="0"> San Antonio </li>
                      <li class="TabbedPanelsTab" tabindex="0"> UICC</li>
                      <li class="TabbedPanelsTab" tabindex="0"> Finding and Citing</li>
                    </ul>
                    <div class="TabbedPanelsContentGroup">
                      <div class="TabbedPanelsContent">
                        <h2>AACR - <a href="http://www.aacr.org/" target="_blank">American Association for Cancer Research</a></h2>
    <p>These abstracts are available in two places - from the <strong>AACR</strong> website and from the journal <strong>Cancer Research.</strong></p>
    <p> </p>
                        <p><strong>1. Cancer Research. 2009-present</strong>. </p>
                        <blockquote>
                          <p>These abstracts were  published in the journal <em>Cancer Research</em>. They can be downloaded from the journal to RefWorks.
                            Use Advanced Search at <a href="http://cancerres.aacrjournals.org/search" target="_blank">http://cancerres.aacrjournals.org/search</a>. 
                            Check the &quot;Search Only Meeting Abstracts&quot; box. You can also limit your search to April of the year you want.</p>
                          <p> </p>
                          <p><img src="images/AACR_search_meetings.jpg" alt="Search meetings" width="226" height="55" border="1" /></p>
                        </blockquote>
                        <h3>2. <a href="http://www.aacrmeetingabstracts.org/search.dtl" target="_blank">AACR online - <strong>2004-2010</strong></a></h3>
                        <blockquote>
                          <p>This online searchable database has the capability to download to RefWorks. </p>
                          <p> </p>
                          <p>Try to avoid using the sections called <em>Specify Journals to Search </em>and <em>Specify Meetings to Search</em>.                    They occasionally cause the search to fail without explanation.</p>
                        </blockquote>
                        <blockquote>
                          <p><strong>Warning</strong>: If you download these abstracts to RefWorks, they download as 'Journal Articles'. For your own sake, you should change the Reference Type to 'Abstract'. (see below)</p>
                        </blockquote>
                        <p><strong>3.</strong> <strong>1982-2004 </strong>(Volumes 23-45)</p>
                        <blockquote>
                          <p>The BCCA VC Library has print copies of  AACR abstract books. Some older versions may need to be retrieved from Storage.</p>
                        </blockquote>
                        <h3>AACR Education Book <a href="http://educationbook.aacrjournals.org/search.dtl" target="_blank">2005-current</a></h3>
                        <blockquote>
                          <p><strong>Warning</strong>: If you download these abstracts to RefWorks, they download as 'Journal Articles'. For your own sake, you should change the Reference Type to 'Abstract'. (see below)</p>
                        </blockquote>
                        <h3>RefWorks: Change Reference Type to 'Abstract'</h3>
                        <h3> </h3>
                        <p><img src="images/RW_abstracts.jpg" alt="Change the Reference Type" width="423" height="440" border="1" /></p>
                        <p> </p>
                        <h3>Webcasts of 2012 AACR Meeting</h3>
                        <p> </p>
                        <p><a href="http://www.aacr.org/page29436.aspx" target="_blank"><img src="images/AACR_2012_webcasts.jpg" alt="Webcasts from 2012 conference" width="325" height="180" border="1" /></a></p>
                        <p> </p>
                        <h3>AACR 2013</h3>
                        <p> </p>
                        <p><a href="http://www.aacr.org/home/scientists/meetings--workshops/aacr-annual-meeting-2013.aspx" target="_blank"><img src="images/AACR_2013.jpg" alt="AACR 2013" width="154" height="200" border="1" /></a></p>
                        <p><br />
                        </p>
                      </div>
                      <div class="TabbedPanelsContent">
                        <h3>ASCO - <a href="http://www.asco.org/" target="_blank">American Society of Clinical Oncology</a></h3>
                        <p><br />
                          These  abstracts are available in two places - from the journal <strong>JCO</strong> and from the <strong>ASCO</strong> Conference website. </p>
                        <p> </p>
                        <h3>1. <a href="http://jco.ascopubs.org/search.dtl">JCO</a> - 2004-current </h3>
                        <p>These references can be downloaded to RefWorks. Restrict your search of JCO by ticking the box &quot;Specify Sources to Search&quot;:</p>
                        <blockquote>
                          <p><img src="images/asco_jco.jpg" alt="" width="411" height="79" /></p>
                        </blockquote>
                        <br />
                        <h3>2. <a href="http://jco.ascopubs.org/search.dtl" target="_blank">ASCO</a> - 2007-current</h3>
                        <p> This database is searchable, <strong>but you</strong> <strong>can't download to RefWorks</strong>. You may use copy and paste to add these abstracts to RefWorks.</p>
                        <blockquote>
                          <p><a href="http://www.asco.org/ASCOv2/Meetings/Abstracts" target="_blank">2007 - 2011</a><br />
                          </p>
                          <p> </p>
                          <p> </p>
                        </blockquote>
                        <h3>ASCO 2013 </h3>
                        <h3> <strong>May 31-June 4, 2013 | McCormick Place | Chicago, Illinois</strong></h3>
                        <p> </p>
                        <p><a href="http://chicago2013.asco.org/" target="_blank"><img src="images/ASCO_2013.jpg" width="366" height="260" /></a></p>
                      </div>
                      <div class="TabbedPanelsContent">
                        <h3>ASH - <a href="http://www.hematology.org/" target="_blank">American   Society of Hematology</a></h3>
                        <h3><br />
                          Abstracts</h3>
                        <p>Published in <em>Blood</em>, these abstracts can be downloaded to RefWorks.</p>
                        <p><a href="http://abstracts.hematologylibrary.org/content/vol118/issue21/" target="_blank">2011</a></p>
                        <p><a href="http://abstracts.hematologylibrary.org/content/vol116/issue21/" target="_blank">2010</a></p>
                        <p><a href="http://bloodjournal.hematologylibrary.org/misc/ASH_Meeting_Abstracts_Info.dtl" target="_blank">2007-current</a></p>
                        <p><strong><br />
                          Hematology, </strong>the <em><strong>Education Program Book</strong></em>.<br />
                        </p>
                        <p><em><strong><a href="http://www.asheducationbook.org/contents-by-date.0.shtml" target="_blank">Hematology</a></strong></em> is published annually by the American Society of   Hematology (ASH) in one volume per year. The <em>Education Program Book</em> provides review articles from the Education Program from the  ASH Annual Meeting. In this book, each chapter relates to a session presented at the meeting</p>
                        <p> </p>
                        <p><a href="http://asheducationbook.hematologylibrary.org/content/current">Current issue</a></p>
                        <p><a href="http://www.asheducationbook.org/contents-by-date.0.shtml">Previous issues</a>.</p>
                        <p> </p>
                        <h3>ASH 2012 - Atlanta - December 8-12, 2012</h3>
                        <p> </p>
                        <p><a href="http://www.hematology.org/meetings/annual-meeting/"><img src="images/ASH_2012.jpg" width="440" height="275" alt="ASH 2012" /></a></p>
                        <p> </p>
                        <p> </p>
                        <p> </p>
                      </div>
                      <div class="TabbedPanelsContent">
                        <h3>ASTRO - <a href="https://www.astro.org/" target="_blank">American Society for Radiation Oncology</a></h3>
                        <h3><a href="http://www.redjournal.org/content/astro_abstracts" target="_blank">Abstracts</a> - from the annual conference</h3>
                        <p>These abstracts can be downloaded to RefWorks.</p>
                        <p> </p>
                        <p><a href="http://www.astro.org" target="_blank">ASTRO</a>’s role in research includes the promotion and support of basic,   translational, clinical and outcomes/health services research and training in radiation oncology, biology and physics. These activities are facilitated through the ASTRO Research Council.</p>
                        <p> </p>
                        <p>Founded in 1958, ASTRO’s mission is to advance the practice of radiation oncology by promoting excellence in patient care, providing opportunities for educational and professional development, promoting research and disseminating research results and representing radiation oncology in a rapidly evolving healthcare environment.</p>
                        <blockquote>
                          <blockquote>
                            <blockquote>
                              <p><em>from:</em> <a href="http://www.astro.org/AboutUs/index.aspx" target="_blank">www.astro.org/AboutUs/index.aspx</a></p>
                              <p> </p>
                            </blockquote>
                          </blockquote>
                        </blockquote>
                        <h3>ASTRO 2012 - Boston - October 28-31, 2012</h3>
    <p> </p>
    <p><a href="https://www.astro.org/Meetings-and-Events/2012-Annual-Meeting/Index.aspx" target="_blank"><img src="images/ASTRO_2012.jpg" alt="ASTRO_2012" width="440" height="108" border="1" /></a></p>
                        <p> </p>
                        <p> </p>
                      </div>
                      <div class="TabbedPanelsContent">
                        <h3>CARO - <a href="http://www.caro-acro.ca" target="_blank">Canadian Association of Radiation Oncology</a></h3>
                        <p> </p>
                        <p>The abstracts are published in print, in <em><a href="http://www.sciencedirect.com/science/journal/01678140" target="_blank">Radiotherapy &amp; Oncology</a></em>. All abstracts are listed in a .pdf document and are not downloadable to RefWorks. To add these abstracts to RefWorks or other citation managers, you must copy and paste.<br />
                        </p>
                        <p> </p>
                        <p>2011 not yet available (as of Mar 1/12)</p>
                        <p><a href="http://www.sciencedirect.com/science/journal/01678140/96/supp/S2" target="_blank">2010</a> 96 Suppl 2</p>
                        <p><a href="../Documents/caro_2009_green_journal_abstracts_sept2.pdf" target="_blank">2009</a> (not yet published in R&amp;O, but the Libary has a copy in .pdf format.)</p>
                        <p><a href="http://tiny.cc/j4q2r" target="_blank">2008</a> 88 Suppl 1<br />
                          <a href="http://www.sciencedirect.com/science/journal/01678140/84/supp/S2" target="_blank">2007</a> 84 Suppl 2</p>
                        <p><a href="http://www.sciencedirect.com/science/journal/01678140/80/supp/S1" target="_blank">2006</a> 80 Suppl 1</p>
                        <p><a href="http://www.sciencedirect.com/science/journal/01678140/76/supp/S1" target="_blank">2005</a> 76 Suppl 1</p>
                        <p><a href="http://www.sciencedirect.com/science/journal/01678140/72/supp/S1" target="_blank">2004</a> 72 Suppl 1</p>
                        <p><a href="http://www.sciencedirect.com/science/journal/01678140/69/supp/S1" target="_blank">2003</a> 69 Suppl 1</p>
                        <p><a href="http://www.sciencedirect.com/science/journal/01678140/65/supp/S1" target="_blank">2002</a> 65 Suppl 1</p>
                        <p><a href="http://www.sciencedirect.com/science/article/pii/S0360301601016728" target="_blank">2001</a> These abstracts were published in <em>Int J Radiat Oncol Biol   Phys;</em>50(5):1380-1418<strong>.</strong></p>
                        <p> </p>
                        <p> </p>
                        <h4>CARO 2012 - Ottawa - Sept 12-15</h4>
                        <p><img src="images/CARO_2013.jpg" width="384" height="192" /></p>
                      </div>
                      <div class="TabbedPanelsContent">
                        <h3>ECCO - <a href="http://www.ecco-org.eu/" target="_blank">European CanCer Organization</a></h3>
                        <p> </p>
                        <p><a href="http://www.ecco-org.eu/Conferences/Conferences/Past-conferences.aspx" target="_blank">Past Conferences</a></p>
                        <ul>
                          <li><a href="http://www.ecco-org.eu/ecco_content/ECCO16_AbstractBook/index.html" target="_blank">ECCO 16 2011</a> or <a href="http://www.ejcancer.info/issues" target="_blank">EJC Volume 47 Suppl 1</a></li>
                          <li><a href="http://www.ecco-org.eu/ecco_content/ECCO15_AbstractBook/index.html" target="_blank">ECCO 15 2009</a></li>
                          <li><a href="http://www.ecco-org.eu/ecco_content/ECCO14_AbstractBook/index.html" target="_blank">ECCO 14 2007</a> or CD-ROM in Library: QZ200 E88 2007 vol. 2</li>
                          <li><a href="http://www.ecco-org.eu/ecco_content/ECCO13_abstractbook/index.html#/1/zoomed" target="_blank">ECCO 13 2005</a> or CD-ROM in Library: QZ200 E88 2005 vol. 2</li>
                        </ul>
                        <p>Education Books</p>
                        <ul>
                          <li>ECCO 15 2009 <a href="http://www.ejcancer.info/issues" target="_blank">EJC Volume 45 Suppl 1</a> or CD-ROM in Library: QZ200 J74 2009</li>
                          <li>ECCO 14 2007 CD-ROM in VC Library: QZ200 E88 2007 vol. 1</li>
                          <li>ECCO 13 2005 CD-ROM in VC Library: QZ200 E88 2005 vol. 1</li>
                        </ul>
                        <h3>ECCO 2013</h3>
                        <p> </p>
                        <p><a href="http://eccamsterdam2013.ecco-org.eu/" target="_blank"><img src="images/ECCO_2013.jpg" width="384" height="165" border="1" /></a></p>
                      </div>
                      <div class="TabbedPanelsContent">
                        <h3>ESMO - <a href="http://www.esmo.org/" target="_blank">European Society for Medical Oncology</a></h3>
                        <p><a href="http://www.esmo.org/education-research/abstracts-virtual-meetings-and-meeting-reports.html">List of meetings</a></p>
                        <p> </p>
                        <p><a href="http://www.esmo.org/education-research/educational-books.html" target="_blank">ESMO Educational books</a></p>
                        <p>ESMO 36 2011 European Journal of Cancer <a href="http://www.ecco-org.eu/ecco_content/ECCO16_AbstractBook/index.html">47 Suppl 1</a></p>
                        <p>ESMO 35 2010 : Annals of Oncology <a href="http://annonc.oxfordjournals.org/content/21/suppl_8" target="_blank">21 Suppl 8</a> (Milan)</p>
                        <p>ESMO 34 2009 European Journal of Cancer Supplements <a href="http://www.ecco-org.eu/ecco_content/ECCO15_AbstractBook/index.html">7(2) Sept 2009</a> (Berlin)</p>
                        <p>or <a href="http://www.ejcancer.info/issues" target="_blank">EJC Volume 45 Suppl 1</a></p>
                        <p>ESMO 33 2008  Annals of Oncology <a href="http://annonc.oxfordjournals.org/content/19/suppl_8.toc">19 Suppl 8</a> (Stockholm)</p>
                        <p>ESMO 32 2007 Annals of Oncology <a href="http://www.ecco-org.eu/ecco_content/ECCO16_AbstractBook/index.html" target="_blank">18 Suppl 9</a> (Lugano)</p>
                        <p>ESMO 31 2006 Annals of Oncology <a href="http://annonc.oxfordjournals.org/content/17/suppl_9.toc?etoc" target="_blank">17 Suppl 9</a> (Istanbul)</p>
                        <p>ESMO 29 2004 Annals of Oncology <a href="http://annonc.oxfordjournals.org/content/15/suppl_3.toc" target="_blank">15 Suppl 3</a> (Vienna)</p>
                        <p> </p>
                        <h3>ESMO 2013 Amsterdam</h3>
                        <p> </p>
                        <p><a href="http://eccamsterdam2013.ecco-org.eu/" target="_blank"><img src="images/ECCO_2013.jpg" width="384" height="165" border="1" /></a></p>
                      </div>
                      <div class="TabbedPanelsContent">
                        <h3>ESTRO - <a href="http://www.estro.org" target="_blank">European Society for Therapeutic Radiology and Oncology</a></h3>
                        <p> </p>
                        <p>Many of these abstracts are published in the green journal,<em> Radiotherapy &amp; Oncology</em>. Some of the <a href="http://www.estro-members.org/publications/Pages/AbstractBooks.aspx" target="_blank">abstract books</a> are also available for download from the ESTRO website.</p>
                        <p>You can't download these abstracts to RefWorks.</p>
                        <p> </p>
                        <table width="479" border="0" cellspacing="1" cellpadding="3">
                          <tr align="left">
                            <th width="33" scope="row">2011*</th>
                            <td width="135">30th Annual  Meeting</td>
                            <td width="289"><p>European Journal of Cancer <a href="http://www.ecco-org.eu/ecco_content/ECCO16_AbstractBook/index.html">47 Suppl 1</a></p></td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2010</th>
                            <td>29th Annual  Meeting</td>
                            <td><a href="http://www.estro-events.org/Documents/ESTRO29_report.pdf" target="_blank">Abstracts</a> (Barcelona) </td>
                          </tr>
                          <tr align="left">
                            <th valign="top" scope="row">2009*</th>
                            <td valign="top">28th Annual  Meeting</td>
                            <td>(abstracts not available)(ECCO15 / ESTRO 28), Berlin 20-24 September, 2009?)</td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2008</th>
                            <td>27th Annual  Meeting</td>
                            <td>Radiotherapy &amp; Oncology <a href="http://www.estro-members.org/publications/Documents/ESTRO2720AbstractBook.pdf" target="_blank">88 Suppl 2</a></td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2007*</th>
                            <td>26th Annual  Meeting</td>
                            <td>(abstracts not found)</td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2006</th>
                            <td>25th Annual  Meeting</td>
                            <td>Radiotherapy &amp; Oncology <a href="http://www.sciencedirect.com/science?_ob=PublicationURL&_tockey=#TOC#5155#2006#999189999.8 998#665740#FLT#&_cdi=5155&_pubType=J&_auth=y&_acct=C000054470&_version=1&_urlVersion=0&_us erid=1766625&md5=971c04d2d708ca04155e86c400b96821" target="_blank">81 Suppl 1</a></td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2005*</th>
                            <td>24th Annual  Meeting</td>
                            <td>(abstracts not found)</td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2004</th>
                            <td>23th Annual  Meeting</td>
                            <td><a href="http://www.estro-members.org/publications/Documents/2AbstractbookESTRO23.pdf" target="_blank">online abstract book</a></td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2003*</th>
                            <td>22th Annual  Meeting</td>
                            <td>(abstracts not found)</td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2002</th>
                            <td>21th Annual  Meeting</td>
                            <td>Radiotherapy &amp; Oncology <a href="http://www.sciencedirect.com/science/journal/01678140/64/supp/S1" target="_blank">64 Suppl 1</a></td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2001</th>
                            <td>20th Annual Meeting</td>
                            <td>(abstracts not found)</td>
                          </tr>
                          <tr align="left">
                            <th scope="row">2000</th>
                            <td>19th Annual Meeting</td>
                            <td>Radiotherapy &amp; Oncology <a href="http://www.sciencedirect.com/science/journal/01678140/56/supp/S1" target="_blank">56 Suppl 1</a></td>
                     

  • Spry Accordion Panels view incorrect in IE8

    I have a page set up using both spry menu and spry accordion panels. The problem is that in FireFox and Chrome, the pages view as they should. However, in IE, the panels on the accordion spread and are open, it doesn't view as it should. The test page is here www.sbcvote.us/index1.html the source code is below. My initial guess is that I have an open or not closed tag somewhere?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Joe Paul Gonzalez San Benito County Clerk-Auditor-Recorder-Registrar of Voters</title>
    <meta name="keywords" content="Joe Paul Gonzalez, San Benito County, Clerk, Auditor, Recorder, Registrar of Voters, fppc form 460, reconveyance deed, deed of reconveyance, reconveyance, homepage, mechanics lien release, quit claim deed form, release of mechinics lien, form, san, reconveyance, county, deed, 460, california, fppc, nacimiento, trust, elections, ca, solictud, certifacadas, reporting, statements, nominees, handbook, contribution, joe, paul, gonzalez" />
    <meta name="description" content="Joe Paul Gonzalez San Benito County Clerk-Auditor-Recorder-Registrar of Voters" />
    <link href="scripts/style.css" rel="stylesheet" type="text/css" />
    <script src="/SpryAssets/menu/SpryMenuBar.js" type="text/javascript"></script>
    <script src="/SpryAssets/accordion/SpryAccordion.js" type="text/javascript"></script>
    <link href="/SpryAssets/menu/SpryMenuBarHorizontal_sbcvote.css" rel="stylesheet" type="text/css" />
    <link href="/SpryAssets/accordion/SpryAccordion_sbcvote.css" rel="stylesheet" type="text/css" />
    <script language="javascript" type="text/javascript">
    function clearText(field)
        if (field.defaultValue == field.value) field.value = '';
        else if (field.value == '') field.value = field.defaultValue;
    </script>
    </head>
    <body>
    <div id="wrapper">
        <div id="header"><!-- end of site_title -->
          <div id="header_right">
                <ul id="header_button">
                    <li><a href="#"><img src="images/home.jpg" alt="home" /></a></li>
                    <li><a href="#"><img src="images/contact.jpg" alt="contact us" /></a></li>
                </ul>
                <div class="cleaner"></div>
                <form action="#" method="get">
                    <input type="text" value="Enter a keyword here..." name="q" size="10" id="searchfield" title="searchfield" onfocus="clearText(this)" onblur="clearText(this)" />
                    <input type="submit" name="Search" value="" alt="Search" id="searchbutton" title="Search" />
                </form>
          </div>
        </div> <!-- end of header -->
        <div id="banner">
        <div id="banner_box">
            <ul>
            <li><a href="clerk.htm" ><span class="current"></span><img src="images/countyClerk.jpg" alt="San Benito County Clerk" /></a></li>
                <li><a href="auditor.htm"><span></span><img src="images/countyAuditor.jpg" alt="San Benito County Auditor" /></a></li>
                <li><a href="recorder.htm"><span></span><img src="images/countyRecorder.jpg" alt="San Benito County Recorder" /></a></li>
                <li><a href="http://results.sbcvote.us" target="_new"><span></span><img src="images/coRegistrar_results.jpg" alt="" /></a></li>
            </ul>
            </div>
        </div> <!-- end of banner -->
        <div id="menu">
          <ul id="MenuBar1" class="MenuBarHorizontal">
            <li><a class="MenuBarItemSubmenu" href="index.html">Home</a>
              <ul>
                <li><a href="#">Item 1.1</a></li>
                <li><a href="#">Item 1.2</a></li>
                <li><a href="#">Item 1.3</a></li>
              </ul>
            </li>
            <li><a href="registrar/candidateinfo.htm" class="MenuBarItemSubmenu">Candidate Info</a>
              <ul>
                <li><a href="candidate_forms_manuals.htm">Forms &amp; Manuals</a></li>
                <li><a href="pdf/forms/registrar/candidates/2010CandidateHandbook.pdf">2010 Candidate Handbook</a></li>
                <li><a href="registrar/form460.htm" class="MenuBarItemSubmenu">FPPC 460s</a>
                  <ul>
                    <li><a href="registrar/form460_all.htm">Candidate Form 460s</a></li>
                    <li><a href="registrar/2010_form460.htm">2010 Candidate 460 Forms</a></li>
                    <li><a href="registrar/2009_form460.htm">2009 Candidate 460 Form</a></li>
                    <li><a href="registrar/2008_form460.htm">2008 Candidate 460 Form</a></li>
                    <li><a href="registrar/2007_form460.htm">2007 Candidate 460 Form</a></li>
                  </ul>
                </li>
                <li><a href="candidate_reporting.htm">Reporting</a></li>
              </ul>
            </li>
            <li><a class="MenuBarItemSubmenu" href="registrar/votebymail.htm">Vote-By-Mail</a>
              <ul>
                <li><a class="MenuBarItemSubmenu" href="overseasvoting.htm">Overseas Voting</a>
                  <ul>
                    <li><a href="pdf/forms/registrar/votebymail/oversees_votebymail_request.pdf">Overseas Vote-By-Mail Request</a></li>
                    <li><a href="pdf/forms/registrar/votebymail/guide_military_overseas.pdf">Guide Military Overseas</a></li>
                    <li><a href="#">Untitled Item</a></li>
                  </ul>
                </li>
                <li><a href="mailvotestatus.htm">Ballot Status</a></li>
                <li><a href="pdf/forms/registrar/votebymail/votebymail_app_gen_eng.pdf">Application </a></li>
                <li><a href="pdf/forms/registrar/votebymail/votebymail_app_gen_SPAN.pdf"> Espa&ntilde;ol</a></li>
              </ul>
            </li>
            <li><a href="/registrar/registration.htm" class="MenuBarItemSubmenu">Register to Vote</a>
              <ul>
                <li><a href="registrar/national_vrc_notice.htm">Form English</a></li>
                <li><a href="http://www.sbcvote.us/registrar/national_vrc_notice_sp.htm">Espa&ntilde;ol</a></li>
                <li><a href="registrar/statement_distribution.htm">Distribution</a></li>
              </ul>
            </li>
            <li><a href="registrar/pollworker.htm" class="MenuBarItemSubmenu">Pollworker</a>
              <ul>
                <li><a href="registrar/pollworker.htm">Become a Pollworker</a></li>
                <li><a href="registrar/pollworker.htm#student">Students</a></li>
                <li><a href="registrar/pollworker.htm#student">State Employees</a></li>
              </ul>
            </li>
            <li><a href="registrar/hava_faqs.htm" class="MenuBarItemSubmenu">HAVA</a>
              <ul>
                <li><a href="registrar/hava_complaint_procedure.htm">Complaint Procedure</a></li>
                <li><a href="registrar/hava_compliancemanual.htm">Compliance Manual</a></li>
              </ul>
            </li>
    </ul>
    </div> <!-- end of menu -->
        <div id="content_wrapper">
        <div id="left_sidebar">
            <div class="box">
                <h2><span></span>Click on a Tab for Info</h2>
                    <div class="body">
                        <ul class="side_menu">
                          <li>
                            <div id="Accordion1" class="Accordion" tabindex="0">
                              <div class="AccordionPanel">
                                <div class="AccordionPanelTab">Vote-By-Mail (VBM)</div>
                                <div class="AccordionPanelContent"><a href="/registrar/votebymail.htm">Vote-By-Mail Voting</a><a href="/pdf/forms/registrar/votebymail/overseas_votebymail_request.pdf">Overseas VBM Request</a>
                                  <a href="/pdf/forms/registrar/votebymail/VBM_Application.pdf">Application for Permanent VBM </a><a href="/pdf/forms/registrar/votebymail/guide_military_overseas.pdf">Guide to Military Voting</a>
                                  <a href="/pdf/forms/registrar/votebymail/votebymail_app_general_county_fill.pdf">Application VBM General Election</a><a href="/registrar/mailvotestatus.htm">Did My VBM Ballot Get Counted?</a><br />
                                    <br />
                                  <br />
    </div>
                              </div>
                              <div class="AccordionPanel">
                                <div class="AccordionPanelTab">Voto Por Correo</div>
                                <div class="AccordionPanelContent"><a href="/registrar/spanish/voto.por.correro.html">Voto Por Correro</a><a href="/registrar/spanish/overseasvoting.SPAN.html">Votante Información Extranjero</a><a href="/registrar/mailvotestatus.htm">Cheque se recibimos su voto por correro</a> <a href="/pdf/forms/registrar/votebymail/VBM_ApplicationSPAN.pdf">Solicitud de Balota de Votación por correo en California</a></div>
                              </div>
                              <div class="AccordionPanel">
                                <div class="AccordionPanelTab">Voter Information</div>
                                <div class="AccordionPanelContent"> <a href="/registrar/national_vrc_notice.htm">Register to Vote</a>
                                  <a href="http://www.voterguide.sos.ca.gov/pdf/english/" target="_new">Voter Information Guide Nov 2010</a>
                                  <a href="/pdf/forms/registrar/register/YourRightToVote_ENG.pdf">Your Right to Vote</a>                              <a href="/pdf/forms/registrar/register/eng-list-of-certified-candidates11.10.pdf">Certified Candidates Nov 2010</a>
                                  <a href="/pdf/forms/registrar/register/TimeOfftoVote_ENG.pdf">Time Off to Vote </a><br />
                                  <br />
                                </div>
                              </div>
                              <div class="AccordionPanel">
                                <div class="AccordionPanelTab">Votante Informaci&oacute;n</div>
                                <div class="AccordionPanelContent"> <a href="/pdf/forms/registrar/register/Guide_Voting_SPAN.pdf" target="_new">Gu&iacute;a para Votar</a> <a href="/registrar/national_vrc_notice_sp.htm">Insc&iacute;ibase para Votar</a> <a href="/pdf/forms/registrar/register/Voter-bill-of-rights.SPAN.pdf">Declaración  derechos de  Votantes</a> <a href="/pdf/forms/registrar/register/spanish-vig-nov-2010.pdf">Gu&iacute;a Oficial  Informaci&oacute;n Nov 2010</a> <a href="/pdf/forms/registrar/register/spanish-list-of-certified-candidates11.10.pdf">Lista Candaditos Certificados 2010 </a><a href="/pdf/forms/registrar/register/TimeOfftoVote_SPAN.pdf">Tiempo Libre Para Votar</a></div>
                              </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">For the Candidates</div>
                                <div class="AccordionPanelContent">Blank 460 Forms<br />
                                  Candidates 460 Forms Index<br />
                                2010 Candidate Handbook<br />
                                2010 Calendar </div>
                            </div>
                              <div class="AccordionPanel">
                                <div class="AccordionPanelTab">Nov 2, 2010 Election</div>
                                <div class="AccordionPanelContent">Election Results Page<br />
                                  Canvass of the Vote
                                    <br />
                                    Vote-By-Mail Ballot Look up<br />
                                    State Vote Pamphlet<br />
                                    Sample Ballot Statewide
                                </div>
                              </div>
                              <div class="AccordionPanel">
                                <div class="AccordionPanelTab">Label 7</div>
                                <div class="AccordionPanelContent">Content 7</div>
                              </div>
                              <div class="AccordionPanel">
                                <div class="AccordionPanelTab">Label 8</div>
                                <div class="AccordionPanelContent">Content 8</div>
                              </div>
                            </div>
                          </li>
                            <li> <a href="#">Lorem ipsum dolor</a></li>
                    <li><a href="#">Donec bibendum semper</a></li>
                            <li><a href="#">Proin tincidunt dapibus</a></li>
                            <li><a href="#">Nulla consequat</a></li>
                            <li><a href="#">In enim justo</a></li>
                            <li><a href="#">Aenean vulputate</a></li>
                            <li><a href="#">Etiam ultricies</a></li>
                            <li><a href="#">Nullam vehicula egestas </a></li>             
                        </ul>
    </div>
                <div class="box_bottom"><span></span></div>
                </div>
                <div class="box">
                <h2><span></span>Our Departments</h2>
                    <div class="body">
              <ul class="side_menu">
                            <li><a href="clerk.html">County Clerk</a></li>
                            <li><a href="auditor.html">County Auditor</a></li>
                            <li><a href="recorder.html">County Recorder</a></li>
                            <li><a href="index.html">Registrar of Voters</a></li>
                            <li><a href="http://results.sbcvote.us" target="_new">Election Results</a></li>
                            <li></li>
                            <li></li>
                            <li></li>
    </ul>
                    </div>
                <div class="box_bottom"><span></span></div>
                </div>
            </div> <!-- end of left_sidebar -->
            <div id="content">
    <div class="box">
                <h2><span></span>Welcome to the San Benito County Registrar of Voters</h2>
                    <div class="body">
                        <p> Welcome to our new and updated website for the County of San Benito Clerk-Auditor-Recorder- Registrar of Voters. </p>
                  </div>
                <div class="box_bottom"><span></span></div>
                </div>
                <div class="box">
                <h2><span></span>News and Updates</h2>
                    <div class="body">
                        <div class="news_box">
                          <h3><a href="http://results.sbcvote.us" target="_new">November 2, 2010 Election Results</a></h3>
                            <p>Up to the minute election results for San Benito County will be uploaded to our website at the close of the polls on Tuesday, November 2, 2010 at<a href="http://results.sbcvote.us" target="_new"> http://results.sbcvote.us.</a></p>
                          <div class="cleaner"></div>
                      </div>
                  <div class="news_box">
                    <h3><a href="registrar/mailvotestatus.htm">Vote-By-Mail Ballots</a>
                    </h3>
                    <p>Verify that your Vote-By-Mail Ballot has been received <a href="/registrar/mailvotestatus.htm">here.</a> To insure that your vote is counted, drop off your VBM ballot to our offices on the second floor of the courthouse building room 406 BEFORE Tuesday, Nov. 2, 2010.</p>
                        <div class="cleaner"></div>
                    </div>
                  <div class="news_box">
                        <a href="#"><img class="news_image" src="images/image_08.jpg" alt="image" /></a>
                   <h3><a href="#">Auditor's Department</a></h3>
                        <p> Praesent rhoncus faucibus nibh, non molestie lectus sagittis sed. Praesent ac sem lectus. Cras molestie elit sit amet velit tincidunt imperdiet. Mauris nulla purus.</p>
                    <div class="cleaner"></div>
                    </div>
                    <div class="more float_r"><a href="#">View All</a></div>
                    <div class="cleaner"></div>
                    </div>
                <div class="box_bottom"><span></span></div>
                </div>
            </div> <!-- end of content -->
           <div id="right_sidebar">
            <div class="box">
                <h2 align="center"><span></span>Joe Paul Gonzalez</h2>
                    <div class="body">
                      <ul class="side_menu">
                            <li></li>
                            <li></li>
                            <li><img src="images/joepaul_new.jpg" width="207" height="262" alt="joe paul gonzalez" /></li>
                            <li></li>
                            <li></li>
                            <li></li>
                            <li></li>
                            <li><a href="#">County Clerk-Auditor-Recorder</a></li>                   
                      </ul>
                  </div>
                <div class="box_bottom"><span></span></div>
                </div>
                <div class="sidebar_box">
          <a href="http://results.sbcvote.us" target="_new"><img src="images/results.jpg" alt="Election Results" /></a>            </div>
                <div class="sidebar_box">
                <a href="#"><img src="" alt="City Zoo" /></a>            </div>
          </div> <!-- end of right_sidebar -->
            <div class="cleaner"></div>
        </div> <!-- end of content_wrapper -->
    </div> <!-- end of wrapper -->
    <div id="footer_wrapper">
    <div id="footer">
            <ul class="footer_menu">
            <li><a href="#">Homepage</a></li>
                <li><a href="#">Site Map</a>
                </li>
                <li><a href="#">Clerk</a>
                </li>
                <li><a href="#">Auditor</a></li>
                <li><a href="#">Recorder</a></li>
                <li><a href="#">Registrar of Voters</a></li>
                <li><a href="#">Election Results</a></li>
                <li><a href="#">Forms</a></li>
                <li class="last_menu"><a href="#">Contact</a></li>
            </ul>
            Copyright © 2010 <a href="http://www.netwidesales.com" target="_new">NetWideSales</a> |
            <a href="http://www.netwidesales.com" target="_new">Designed by Irma C. Gonzalez</a> |
        <a href="http://www.joepaulgonzalez.com" target="_new">Joe Paul Gonzalez</a> </div> <!-- end of footer -->
    </div> <!-- end of footer_wrapper -->
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"/images/menubar/SpryMenuBarDownHover.gif", imgRight:"/images/menubar/SpryMenuBarRightHover.gif"});
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    </script>
    </body>
    </html>
    I appreciate any help here, it really doesn't make sense to me, it did work for a few viewing in IE and I must have changed something by mistake?
    Thanks again.

    I added a set width to the accordion css and that solved the problem of the widget running across the page. The IE issue appears to be an ongoing issue with IE. If a viewer has IE8, then hitting the compatibility button on the menu bar will solve the viewing problem. If not, it doesn't view correctly. It views fine on other browsers (Chrome, etc). Problem is how many people will know to hit the compatibility button?
    Thank you for your help, I appreciate the time taken.

  • Spry accordion panel won't open by default

    Here is my code for spry  accordion, I am trying to open the 1st inside accordion panel by default, i f not by default, as soon as its parent is opened, but none of them seems to work. Please let me know where I am going wrong.
    <div class="Accordion" id="mainAccordion" tabindex="0">
    <div class="AccordionPanel">
    <div class="AccordionPanelTab"> <a id="healthCheckAccordion" onClick=""><img align="left" src="/csm/view/include/images/healthicon.gif">Health Check</a></div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab"> <a id="configurationAccordion" onClick="sysAcc.openFirstPanel()"><img align="left" src="/csm/view/include/images/conficon.gif">Configuration</a></div>
    <div class="AccordionPanelContent">
    <div class="Accordion" id="main2ndAccordion" tabindex="1">
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">    <a id="systemAccordion" style="color:#ffffff;background-color: #2F5882;">System</a></div>
    <div class="AccordionPanelContent">
    <a id="kernelParamsAccordion">Kernel Parameters</a><br/>
    <a id="diskUsageAccordion">Disk Usage</a><br/>
    <a id="fileSystemAccordion">File System Statistics</a><br/>
    <a id="osPatchesAccordion">Os Patches</a><br/>
    <a id="networkAccordion">Network</a><br/>
    <a id="userLimitAccordion">User Limit</a><br/>
    <a id="environmentVariablesAccordion">Environment Variables</a><br/>
    </div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">    <a id="productName" style="color:#ffffff;background-color: #2F5882;"></a></div>
    <div class="AccordionPanelContent">
    <a id="odbcAccordion">ODBC</a><br/>
    <a id="bitmodeAccordion">Bitmode</a><br/>
    <a id="versionAccordion">Version</a><br/>
    <a id="licenseInformationAccordion">License Information</a><br/>
    <a id="dumpshrAccordion">Dumpshr</a><br/>
    <a id="dblistAccordion">DBList</a><br/>
    <a id="showtimeAccordion">Showtime</a><br/>
    <a id="serverStatusAccordion">Server Status</a><br/>
    </div>
    </div>
    <script type="text/javascript">
    var sysAcc = new Spry.Widget.Accordion("main2ndAccordion",  {defaultPanel: 0, useFixedPanelHeights: false });
    </script>
    </div>
    </div>
    </div>
    <script type="text/javascript">
    var mainAcc = new Spry.Widget.Accordion("mainAccordion",{ defaultPanel: -1, useFixedPanelHeights: false });
    </script>
    </div>
    Also the System panel, with id="systemAccordion" takes 2 clicks to open, every 1st time the page loads

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet">
    <style>
    #Accordion2 .AccordionPanelTab {
         background-color: #CCCCCC;
         color: #FFFFFF;
    </style>
    </head>
    <body>
    <div id="Accordion1" class="Accordion" tabindex="0">
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><img src="/csm/view/include/images/healthicon.gif">Health Check</div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><img src="/csm/view/include/images/conficon.gif">Configuration</div>
        <div class="AccordionPanelContent">
             <div id="Accordion2" class="Accordion" tabindex="0">
               <div class="AccordionPanel">
                 <div class="AccordionPanelTab">System</div>
                 <div class="AccordionPanelContent">
                <a href="#" id="kernelParamsAccordion">Kernel Parameters</a><br/>
                <a href="#" id="diskUsageAccordion">Disk Usage</a><br/>
                <a href="#" id="fileSystemAccordion">File System Statistics</a><br/>
                <a href="#" id="osPatchesAccordion">Os Patches</a><br/>
                <a href="#" id="networkAccordion">Network</a><br/>
                <a href="#" id="userLimitAccordion">User Limit</a><br/>
                <a href="#" id="environmentVariablesAccordion">Environment Variables</a><br/>
              </div>
               </div>
               <div class="AccordionPanel">
                 <div class="AccordionPanelTab">Product</div>
                 <div class="AccordionPanelContent">
                <a href="#" id="odbcAccordion">ODBC</a><br/>
                <a href="#" id="bitmodeAccordion">Bitmode</a><br/>
                <a href="#" id="versionAccordion">Version</a><br/>
                <a href="#" id="licenseInformationAccordion">License Information</a><br/>
                <a href="#" id="dumpshrAccordion">Dumpshr</a><br/>
                <a href="#" id="dblistAccordion">DBList</a><br/>
                <a href="#" id="showtimeAccordion">Showtime</a><br/>
                <a href="#" id="serverStatusAccordion">Server Status</a><br/>
              </div>
               </div>
             </div>
        </div>
      </div>
    </div>
    <script src="SpryAssets/SpryAccordion.js" ></script>
    <script>
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {defaultPanel: 1, useFixedPanelHeights:false});
    var Accordion2 = new Spry.Widget.Accordion("Accordion2", {defaultPanel: 0, useFixedPanelHeights:false});
    </script>
    </body>
    </html>
    Gramps

  • SQL to XML to Spry Table not working

    I have created a table that uses PHP to pull mySQL data... it
    works fine.
    But if I copy the SQL statement into another php file, then
    use the "Export to XML" function in order to use that XML file as a
    Spry dataset, so that I can sort my columns, I receive an error
    while creating the dataset.
    The problem is in the WHERE statement in the SQL. The code is
    attached... But here it is as well
    WHERE subtbltripparticipants.tripid = '$_GET[trip_id]'
    It's the $_GET that is freaking it out. This code is supposed
    to pull the variable from the URL. It works in a regular recordset
    in DW, but not in a recordset that is exported to XML. Is there a
    different syntax to use? How can I get the variable that is sent
    via URL to be used in the Spry dataset as a filter?
    When I created the dataset, and choose the php file with the
    SQL in it as the "XML Source", I get "Expected comment or
    processing instruction(2,1) in the "Row Element" section, where the
    nodes should show up. I don't understand this error and don't
    understand why the SQL works in a standard table, but not in an XML
    export for Spry.
    Please advise. Thanks,
    Bubba

    Ok,
    I tried that and it basically bring you to OLI7BW as suggested above.
    1. At this point, how do you know which of these it is actually filling:
    2LIS_11_VAHDR Sales Document Header Data
    2LIS_11_VAITM Sales Document Item Data
    2LIS_11_VAKON Sales Document Condition
    2LIS_11_VASCL Sales Document Schedule Line
    2LIS_11_VASTH Sales Document Header Status
    2LIS_11_VASTI Sales Document Item Status
    2LIS_11_V_ITM Sales-Shipping Allocation Item Data
    2LIS_11_V_SCL Sales-Shipping Allocation Schedule Line
    2LIS_11_V_SSL Sales Document Order Delivery
    2. Also, what does it mean when after running OLI7BW wide, with no restriction on my system, still rsa3 shows no records for 2LIS_11_V_SCL?
    Any other way to confirm that there may not be any data in 2LIS_11_V_SCL?
    Or any way, to make an entry which reflect in 2LIS_11_V_SCL so that I can verify if OLI7BW actually fills the setup table?
    Thanks

Maybe you are looking for

  • Convert Photoshop images to WordPress theme

    I work as a freelancer web developer, my website is www.quleiss.com I am more into coding compared to designing. I also work as a WordPress developer. In this ever changing web development industry there is a technique to convert the photoshop image

  • SOA Database Adapter error in 11g

    Hi All, Created BPEL process in 11g that invokes a UPDATE functionality on Database Adapter in Jdeveloper 11g. Using XA database ...... Getting following error. *<fault>* *<bpelFault>* *<faultType>* *<message>0</message>* *</faultType>* *<bindingFaul

  • File Move and Rename Workflow and/or Script

    This seems to be a simple workflow to create, but it isn't working for me. I want a workflow and/or script that will move screenshots from my desktop and place them into a folder. Secondly, I want these images to be renamed from "Picture #" to "Scree

  • Relay through process channel

    Hi, since 3 days our mail server is relaying mail: 30-Jul-2007 06:01:42.68 tcp_local ims-ms E 2 [email protected] rfc822;[email protected] malas+SPAM@ims-ms -daemon 30-Jul-2007 06:01:42.69 tcp_local process E 2 rfc822;[email protected] [email protect

  • Administrator Log no letters

    Hi everyone... i has been installing new software at my imac(2011), but, in my administrator log i cant see anything... What i can do? See: https://dl.dropbox.com/u/95497203/2013-02-05%2018.32.48.jpg Thx for any reply ^^