function showInteractive(linkit){
	if(linkit == 0){
		window.open('cdinteractive.php','CD Interactive','scrollbars=no,menubar=no,height=400,width=500,resizable=no,toolbar=no,location=no,status=no');
	}
}

function theform(){
	var res = false;
	var forming = document.form.signup;
	
	if(forming.p_user.value == ""){
		alert("Please put in a username.");
		res = false;
	}
	
	if(forming.p_password.value == ""){
		alert("Please type in a password.");
		res = false;
	}
	
	if(forming.firstname.value == ""){
		alert("Please put in a first name.");
		res = false;
	}
	
	return res;
}

function membersign(){
	window.open('http://site.4play.net.au/enroll.php','4PlAY Signup');
}