CooperDee 0 Newbie Poster

Hi everyone,
I've been trying to pass a parameter to my popup window but I still can't do it. I think that I am close because a browser window opens but it's a "Page cannot be found" page.
Can you tell me what I'm doing wrong? Do I need the javascript function and the inline javascript? Here's my code:

I started with the <head> tag
<head>
<script language=javascript>
function openPopup()
{
window.open("largerImage.aspx","title", "Height=300px, Width=300px");
}
</script>

</head>


______________________________________________________________

Here's my Hyperlink. The part I'm having problums with is the NavagateUrl attribute.

<asp:HyperLink ImageUrl = '<%# "../images/" + DataBinder.Eval(Container.DataItem, "ImagePath") %>' runat="server" NavigateUrl='<%# javascript:var openPopup = window.open("largerImage.aspx?Param1="& DataBinder.Eval(Container.DataItem,"Name")%>> ' ID="Hyperlink1"></asp:HyperLink>

Why won't my popup window show? Thanks for any help with this one.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.