Forum Moderators: open
How do i go about doing this?
I have created a pop-over function that does something like this but i can't seem to figure out how to position it based on the position of an image or a href link.
here is the my code:
function PopupMe()
{
if (!dom&&!ie&&!ns4)
{
window.open("http://www.google.com/", "", "scrollbars=1")
}
else
{
crossobj=(dom)?document.getElementById("dropin").style : ie? document.all.dropin : document.dropin
crossframe=(dom)?document.getElementById("cframe") : ie? document.all.cframe : document.cframe
crossframe.src="http://www.google.com/"
crossframe.align="left"
crossobj.position="absolute"
crossobj.left="500"
crossobj.visibility=(dom¦¦ie)? "visible" : "show"
}
}