function store_hidecc(){
	if(document.storeform.payment_type[0].checked){
		document.getElementById("creditcarddetails").style.display = "block";
		document.getElementById("sendinvoice").style.display = "none";
	}else{
		document.getElementById("creditcarddetails").style.display = "none";
		document.getElementById("sendinvoice").style.display = "block";
	}
}

function store_nycounty(){
	if(document.storeform.licensee_statelist.options[document.storeform.licensee_statelist.selectedIndex].value == "NY"){
		document.getElementById("nycounty").style.display = "block";
	}else{
		document.getElementById("nycounty").style.display = "none";
	}
}

function store_checkidoremail(){
	document.customertypeform.customer_type[1].checked = true;
}

function showPopWin(page,winh,winw,name){
	openWin(page,name,'height='+winh+',width='+winw+',scrollbars=yes,toolbar=no,location=no,status=no,resizable=yes');
}

function openWin(loc,name,options){
	window.open(loc, "", options);
}

function store_disablebilling(){
	if(document.storeform.billingsameasorg.checked){  
		document.storeform.billing_organization.disabled=true;  
		document.storeform.billing_address1.disabled=true;  
		document.storeform.billing_address2.disabled=true;  
		document.storeform.billing_city.disabled=true;  
		document.storeform.billing_state.disabled=true;  
		document.storeform.billing_statelist.disabled=true;  
		document.storeform.billing_zip.disabled=true;  
		document.storeform.billing_country.disabled=true;  
		
		$("billing-group").hide();
	}else{
		document.storeform.billing_organization.disabled=false;
		document.storeform.billing_address1.disabled=false;
		document.storeform.billing_address2.disabled=false;
		document.storeform.billing_city.disabled=false;
		document.storeform.billing_statelist.disabled=false;
		document.storeform.billing_zip.disabled=false;
		document.storeform.billing_country.disabled=false;
		
		$("billing-group").show();
	}
}

function chalkboard_switch(id){
	//Clear any other selected ones
	$('Chalkboard-1').removeClassName('chalkboard-link-selected');
	$('Chalkboard-2').removeClassName('chalkboard-link-selected');
	$('Chalkboard-3').removeClassName('chalkboard-link-selected');
	$('Chalkboard-4').removeClassName('chalkboard-link-selected');
	$('Chalkboard-5').removeClassName('chalkboard-link-selected');
	
	//Set the current one
	$(id).addClassName('chalkboard-link-selected');
	
	//Fade image in
	$('chalkboard-image').src = URL + '/img/' + id + '.png';
}