//  Agreement Check
function checkscript(redirect) {
if (document.agreement.agreed.checked) {
	// Redirect to value(URL) associated with I agree button
	window.open(redirect); 
}
else {
	// Display the alert box
	alert('You have not agreed to accept Academic Technology terms and conditions.');
	
}
}
// End Agreement Check


//  Windows Anti Virus Agreement Check & Redirect
function radioRedirect() {
if (document.agreement.agreed.checked) {
	// Redirect to Value(URL) associated with radio button
	if (document.agreement.win[0].checked){
		window.open(document.agreement.win[0].value);
	}
	if (document.agreement.win[1].checked){
		window.open(document.agreement.win[1].value);
	}
	if (document.agreement.win[2].checked){
		window.open(document.agreement.win[2].value);
	}
	if ((document.agreement.win[0].checked != true)&&(document.agreement.win[1].checked != true)&&(document.agreement.win[2].checked != true)){
		alert('Please choose the version of Symantec software you need -- for either Windows Vista x86 (32-bit), Windows Vista x64 (64-bit), Windows XP or Windows 2000.');
	}
}
else {
	// Display the alert box
	alert('You have not agreed to accept Academic Technology terms and conditions.');
	
}
}
// Vista Anti Virus Agreement Check & Redirect
