tomjelfs
04-08-2004, 05:50 AM
This is the script to launch my forumer site:
<script>
function forum(){
var popurl="http://tjays.2.forumer.com"
var winleft = (screen.width - 790) / 2;
var winUp = (screen.height - 600) / 2;
winpops=window.open(popurl,"","width=790,height=600,scrollbars=yes,left="+winleft+",top="+winUp)
}
</script>
<input type=button value="Launch Forums" onClick=javascript:forum()>
</script>
I'm gonna have the rules written above this button. But what I want to know is if there is a way of having a check box that people wishing to enter have to check to say they've read the rules. So basically if they check the agreement box it then makes the button to launch the forums active.
Hope this makes sense
<script>
function forum(){
var popurl="http://tjays.2.forumer.com"
var winleft = (screen.width - 790) / 2;
var winUp = (screen.height - 600) / 2;
winpops=window.open(popurl,"","width=790,height=600,scrollbars=yes,left="+winleft+",top="+winUp)
}
</script>
<input type=button value="Launch Forums" onClick=javascript:forum()>
</script>
I'm gonna have the rules written above this button. But what I want to know is if there is a way of having a check box that people wishing to enter have to check to say they've read the rules. So basically if they check the agreement box it then makes the button to launch the forums active.
Hope this makes sense