$(function() {
	// legal popup
	$('#disclaimer a[rel="legal"], #iframe a[rel="legal"]').click(function(e) {
		e.preventDefault();
		
		var height	= 500;
		var width	= 650;
		window.open(this.href, 'legal_popup', 'height='+height+', left='+(screen.width-width)/2+', location=no, resizable=no, scrollbars=yes, status=no, toolbar=no, top='+(screen.height-height)/2+', width='+width);
	});
	
	$('#iframe #userOpinion').click( function() {
		$('#iframe #userContact').attr('checked','');
	});
	$('#iframe #newsLetter').click( function() {
		$('#iframe #userContact').attr('checked','');
	});
	$('#iframe #moreInfo').click( function() {
		$('#iframe #userContact').attr('checked','');
	});
	$('#iframe #userContact').click( function() {
		$('#iframe #userOpinion').attr('checked','');
		$('#iframe #newsLetter').attr('checked','');
		$('#iframe #moreInfo').attr('checked','');
	});
});
