This is probably a question but how do you create a link that opens up another page in a new windows to a certain size much like bobbanet.co.uk

This is probably a question but how do you create a link that opens up another page in a new windows to a certain size much like bobbanet.co.uk
You mean a popup?
Try this:
Put this in the header:
<SCRIPT LANGUAGE="JavaScript">
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,men ubar=0,resizable=0,width=WIDTH HERE,height=HEIGHT HERE');");
}
</script>
And use this link:
<A HREF="javascript:popUp('FILENAMEHERE')">Open the Popup Window</A>
There you go.
Ill try it in a sec, thanks.
also, Search around www.dynamicdrive.com
They have a few useful scripts![]()
dhtml won't do it, it's js.
Want to hide these adverts? Register an account for free!