DayLaborer
Programmer
My superboss (i.e. boss' boss
) asked me to do the following and I'm a bit stuck...
I need to place a link on our intranet that will open a new window to a page which is hosted externally - i.e. the HTML is not in my control. The tricky part is that I must completely hide the URL of the pop-up page. For simplicity, I'll refer to the page which (the HTML) is under my control as the intranet page and the external page to which I'm linking/displaying as the external page.
Here's the places that the URL is potentially displayed:[ol]
[li]The status bar of my intranet page[/li]
[li]The status bar of the external page (i.e. when user mouses-over links in the external page)[/li]
[li]The title bar of the external page[/li]
[/ol]
I've been working with this code:
...but it only addresses only issue #1.
My instructions are that although "view source" and right-clicking on the external page will display the URL, I don't need to worry about that...
Thanks!
I need to place a link on our intranet that will open a new window to a page which is hosted externally - i.e. the HTML is not in my control. The tricky part is that I must completely hide the URL of the pop-up page. For simplicity, I'll refer to the page which (the HTML) is under my control as the intranet page and the external page to which I'm linking/displaying as the external page.
Here's the places that the URL is potentially displayed:[ol]
[li]The status bar of my intranet page[/li]
[li]The status bar of the external page (i.e. when user mouses-over links in the external page)[/li]
[li]The title bar of the external page[/li]
[/ol]
I've been working with this code:
Code:
<script language="JavaScript">
function OnlineCourse()
{
window.open(''[URL unfurl="true"]http://TheSecretURL.com'',''new'',[/URL]
''width=750, height=550, scrollbars=yes, status=no, titlebar=no, menubar=no, toolbar=no, resizable=no'');
}
</script>
<a href="JavaScript:OnlineCourse()">Click here</A>
My instructions are that although "view source" and right-clicking on the external page will display the URL, I don't need to worry about that...
Thanks!