View Single Post
  #9  
Old 02-04-2006, 06:35 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,959

Code:
<script type="text/javascript">
function show_message(val) {
	elid = document.getElementById("message");

	if(val==1) {
		elid.style.visibility = "visible";
	} else {
		elid.style.visibility = "hidden";
	}
}
</script>

<input type="radio" name="sop" onclick="show_message(1);" />Sponsor<br />
<input type="radio" name="sop" onclick="show_message(0);" />Partner</br />

<div id="message" style="visibility:hidden">
$25 is required to become a sponsor!
</div>
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote