Open View from Form Link in Popup Window

Open View from Form Link in Popup Window

Is it possible to create a hyperlink on a form to open a popup window to a view?

I can create a link on my form to open the view, by creating a plain text field in my form with this code:

       Calendar_Link
        (
            type  =  plaintext
            value = "<br />\n"
        )

And then using the OnLoad command of the form to create a dynamic link using this code:

input.Calendar_Link =(((("<a href='https://creator.zoho.com/carlgifford/vacation-rental/#View:Reservations_Popup?Property=" + input.Property + "&CheckOut=" + input.CheckIn + "&CheckOut_op=23" + "'target='_blank'>") + "") + input.Property) + " Availability (opens in new window)") + "</a>";

My only issue is that the link opens in new browser window rather than just a popup window.