$(document).ready(function(){
	$(".terms_").nyroModal();
});
function liveactor_validate_form(){
	if(WhichSelected($(".length"))==""){
		alert("Please select a 30 second or 60 second video length.");
		return false;
	}else if(document.getElementById("weburl").value==""){
		alert("Please type in you website url.  Example: http://example.com");
		return false;
	}else if(document.getElementById("agree").checked != true){
		alert("You must agree to our terms and conditions to purchase the video.");
		return false;	
	}else{
		return true;
	}
}
function WhichSelected(buttongroup){
	for (var i=0;i<buttongroup.length;i++) {
		if (buttongroup[i].checked==true){
			return buttongroup[i].value;
		}
	}
	return "";
}