mySlydial = {
	ShowInput: function (target) {
		var next = parseInt(target) + 1;
		Element.hide('add-' + target);
		Element.show('input-' + target);
		Element.show('add-' + next);
		return false;
	},
	ShowHowItWork: function () {
		Element.show('how-it-work');
		Element.show('hide-hiw');
		return false;
	},
	HideHowItWork: function () {
		Element.hide('how-it-work');
		Element.hide('hide-hiw');
		return false;
	},
	HideAdd: function () {
		Element.hide('add-contact-part');
		Element.hide('hide-add');
		return false;
	},
	ShowAdd: function () {
		Element.show('add-contact-part');
		Element.show('hide-add');
		return false;
	},
	ShowMoreDBN: function (i, j) {
		Element.hide('dbn-sm');
		Element.show('dbn-sl');
		for(var ct = i; ct <= j; ct++){
			Element.show('dbntr-' + ct);
		}
		return false;
	},
	ShowLessDBN: function (i, j) {
		Element.hide('dbn-sl');
		Element.show('dbn-sm');
		for(var ct = i; ct <= j; ct++){
			Element.hide('dbntr-' + ct);
		}
		return false;
	}
}

signup = {
	Showbasic: function () {
		Element.hide('sidebar');
		Element.hide('sidebar2');
		Element.hide('select-plan');
		Element.hide('step2-img');
		Element.hide('tbl');
		Element.hide('signupnote');
		Element.show('basic-part');
		return false;
	}
}

function showother(val){
	if (val == 'Other'){
		document.getElementById("otherv").style.display = 'block';
		document.getElementById("ffv").style.display = 'none';
	}else if (val == 'Friends & Family'){
		document.getElementById("ffv").style.display = 'block';
		document.getElementById("otherv").style.display = 'none';
	}else{
		document.getElementById("otherv").style.display = 'none';
		document.getElementById("ffv").style.display = 'none';
	}
}


