I have TEXT on a page, and I want to click the text to open a window page that is set to a size like width=400 height=400
Is there a way to do this.
I tried to use a javascript like this:
function FaqWindow() {
window.open('HR-FAQ.asp','Frequently Asked Question','width=300,
height=300,scrollbars=no,statusbar=no,toolbar=no,resizable=no');
}
window.onload = FaqWindow;
//-->
</script>
if this works I do I set this to the text:
<p align="left"><strong><font color="#0000FF"><u>Where do I begin?</u></font></strong></p>
thanks in advance
Is there a way to do this.
I tried to use a javascript like this:
function FaqWindow() {
window.open('HR-FAQ.asp','Frequently Asked Question','width=300,
height=300,scrollbars=no,statusbar=no,toolbar=no,resizable=no');
}
window.onload = FaqWindow;
//-->
</script>
if this works I do I set this to the text:
<p align="left"><strong><font color="#0000FF"><u>Where do I begin?</u></font></strong></p>
thanks in advance