// 
//  mailinglist.js
//  brindon
//  
//  Created by Richard Henry on 2008-12-05.
//  Copyright 2008 J Brindon Addy. All rights reserved.
// 

function mailing_form_show() {
	$('mailing_list').update('<h3>Join the Mailing List</h3> <form action="/mailing-list/join/" method="post"><p>Enter your email address below to be sent a 5% off your next purchase voucher*, which you can print off and bring into the shop. You will receive occasional emails about events and special offers in the future.</p> <p><label for="mailing_form_email">Your email address:</label><br /><input type="text" id="mailing_form_email" name="email" /> <input type="submit" value="Join List" class="mailing_form_control" /> <a href="#" id="mailing_form_cancel" onclick="mailing_form_cancel(); return false;" class="mailing_form_control">Cancel</a></p> <p id="small_mailing_sec"><small>You may unsubscribe at any time. We will not share or sell your email address.</small></p></form>');
	$('mailing_form_email').focus();
}

function mailing_form_cancel() {
	$('mailing_list').update('<p><a href="/mailing-list/join" onclick="mailing_form_show(); return false;"><span>Join the Mailing List</span> &raquo;</a> for <span><span>5%</span> off your next purchase*</span></p>');
}