$(document).ready(function () {
	$('form input[name="target"]').click(function () {
		if ($(this).val() == 'http://[your app url]') {
			$(this).val('');
		}
	});

	$('form').submit(function () {
		return confirm('CMA: By using this tool, you claim ownership (or permission) of the site and/or blog being tested as required by the computer misuse act 1990.');
	})
});
