// JavaScript Document

function hideBilling(cb){
	if(cb.checked){
		document.getElementById('billingTable').style.display = 'none';
	}else{
		document.getElementById('billingTable').style.display = 'block';
	}
}

function checkUserAgreement(cb){  //alert('checked');
	if(cb.checked){ //alert('checked1');
		document.getElementById('nextStep').style.display = 'block';
	}else{ //alert('checked2');
		document.getElementById('nextStep').style.display = 'none';
	}
}

function subtype(which){
	if(which == 'monthly'){
		document.getElementById('subscription_amt').innerHTML = '9.95/month';
	}else{
		document.getElementById('subscription_amt').innerHTML = '59.95/year';
	}
}

function showTerms(){
	window.open ('terms.htm', 'infoPop' ,'width=600,height=500,resizable=yes,scrollbars=yes');
}
	
function showPrivacy(){
	window.open ('privacy.htm', 'infoPop' ,'width=500,height=500,resizable=yes,scrollbars=yes');
}

