S
Simon Wigzell
I generate my webpages from a database. A good many of my links are popup
links. For convenience I am using a javascript function to pop up the window
e.g.
popInternalWindow("Home");
popInternalWindow(pagename)
{
popupString = "<%=session("DomainName")%>" = "/" + pagename + ".htm";
pagename = window.open(popupString,pagename,'[parameters]');
}
There is nothing in my code for a search engine to follow and naturally I
would like the search engines to index the entire site. If I was to have a
table with visibility turned off containing all of my lings as regular links
e.g.
<table style="visibility:hidden">
<tr><td>
<a href="[full link name1]">Home</a>
<a href="[full link name2]">Products</a>
..
..
..
</td></tr>
</table>
would the search engines follow those or are they designed to ignore
non-visible html?
If not, is there any other way of doing it other than not using a function
for the popups?
links. For convenience I am using a javascript function to pop up the window
e.g.
popInternalWindow("Home");
popInternalWindow(pagename)
{
popupString = "<%=session("DomainName")%>" = "/" + pagename + ".htm";
pagename = window.open(popupString,pagename,'[parameters]');
}
There is nothing in my code for a search engine to follow and naturally I
would like the search engines to index the entire site. If I was to have a
table with visibility turned off containing all of my lings as regular links
e.g.
<table style="visibility:hidden">
<tr><td>
<a href="[full link name1]">Home</a>
<a href="[full link name2]">Products</a>
..
..
..
</td></tr>
</table>
would the search engines follow those or are they designed to ignore
non-visible html?
If not, is there any other way of doing it other than not using a function
for the popups?