﻿// Check that the check box for terms and conditons
// is checked.
function CheckTermsAccepted(sender, args)
{
	var termsCheck = $get(termsConditionsId);
	args.IsValid = termsCheck.checked;
}

// Shows terms and conditions
// in a new browser window.
function ShowTerms()
{
	var w = window.open("Villkor.html", "_blank", "width=500,height=350");
	w.focus();
	return(false);
}
