// 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 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');
}
