// contact / route.view.js


$(document).ready(function() {
	$('#content form').submit(function() {
		
		// build querystring
		params = new Object;
		$(this).find('input,select').each(function() {
			params[$(this).attr('name')] = $(this).attr('value');
		});
		
		// open window
		window.open($(this).attr('action') + '?' + $.param(params));
		
		return false;
	});
});

