PDA

View Full Version : pop up window in brochure page


wesleythorne
13-Oct-2003, 03:34 PM
hello,
can any one help, i would like to have a pop up window apear on a brochure page. It will contain a form for submiting requests. I have all the code for the form and mail scripts. I just carnt get a pop up window into my brochure page. any ideas ?
site not up yet
many thanks
wes

garyhay
13-Oct-2003, 04:49 PM
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function openpopup(){
var popurl="yourform.htm"
winpops=window.open(popurl,"","width=400,height=450,")
}

</script>
<a href="javascript:openpopup()">yourlinktext</a>

wesleythorne
14-Oct-2003, 11:02 AM
thanks works well !