Your 'More' button has an action 'onclick' assigned. The action is currently defined as "info%5f479%2ehtml".
This isn't going to work. You need to call a function to perform a behavior, presumably open a new window.
I haven't worked with the software enough yet to know what information needs to pass to the new window, but something along the lines of this may be a step in the right direction:
(stick in the template where the YahooSection function is)
function opWin(src){
detWin = window.open(src,'newWin','width=300,height=450');
}
(this goes in the 'onclick' action)
onclick="opWin('info_479.html')"
I don't know if that is the html page you want to call or not. Its being encoded and I don't know what %5f and %2e mean (just need to Google it). But it won't work with the encoding.
Hope that helps some.
This isn't going to work. You need to call a function to perform a behavior, presumably open a new window.
I haven't worked with the software enough yet to know what information needs to pass to the new window, but something along the lines of this may be a step in the right direction:
(stick in the template where the YahooSection function is)
function opWin(src){
detWin = window.open(src,'newWin','width=300,height=450');
}
(this goes in the 'onclick' action)
onclick="opWin('info_479.html')"
I don't know if that is the html page you want to call or not. Its being encoded and I don't know what %5f and %2e mean (just need to Google it). But it won't work with the encoding.
Hope that helps some.
Comment