I can use javascript functions to open and close text windows.
My problem is one of location. When the user mouses over the text, the window opens directly over the link.
How can I specify where the window will open to avoid this?
All of my users are on an intranet running IE5 and IE6.
I am including a function call and a function that I use.
Thanks
<TABLE BORDER="2" CELLPADING="2" CELLSPACING="2">
<TR><TD BGCOLOR="white">
<FONT SIZE="3" COLOR="black" STYLE="cursor:hand" ONMOUSEOUT="dis()" ONMOUSEOVER="general()">
<B>General User</A><BR></FONT>
</TD></TR>
</table>
<SCRIPT LANGUAGE="JavaScript">
function general()
{
add.value="Internet\nE-Mail \nMicrosoft Office with Word, Excel etc."
add.style.height=135
add.style.width=300
}
</script>
My problem is one of location. When the user mouses over the text, the window opens directly over the link.
How can I specify where the window will open to avoid this?
All of my users are on an intranet running IE5 and IE6.
I am including a function call and a function that I use.
Thanks
<TABLE BORDER="2" CELLPADING="2" CELLSPACING="2">
<TR><TD BGCOLOR="white">
<FONT SIZE="3" COLOR="black" STYLE="cursor:hand" ONMOUSEOUT="dis()" ONMOUSEOVER="general()">
<B>General User</A><BR></FONT>
</TD></TR>
</table>
<SCRIPT LANGUAGE="JavaScript">
function general()
{
add.value="Internet\nE-Mail \nMicrosoft Office with Word, Excel etc."
add.style.height=135
add.style.width=300
}
</script>