function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

$(document).ready(function() {

  	$('#postoption').hide();
	$('#emailoption').hide();

	$("input[name='youroption']").change(function(){
	 if ($("input[name='youroption']:checked").val() == 'by email')
			$('#emailoption').show('slow') && $('#postoption').hide('slow');
			
	if ($("input[name='youroption']:checked").val() == 'by post')
			$('#postoption').show('slow') && $('#emailoption').hide('slow');
	
	if ($("input[name='youroption']:checked").val() == ('none' || ''))
			$('#postoption').hide('slow') && $('#emailoption').hide('slow');
	});	 //end change
}); // end ready
