/**
 * Newsletter and Share form validation
 */
 
function swapStateField() {
	var countrySelect = jQuery('#share-your-izze-submit_lead_country');
	
	var stateSelect =  jQuery('#share-your-izze-submit_lead_state');
	var stateText =  jQuery('#share-your-izze-submit_stateAlt');
	
	if(countrySelect.value == 'US') {
		stateSelect.style.display = '';
		stateText.style.display = 'none';
		stateText.value = '';
	} else {
		stateSelect.style.display = 'none';
		stateText.style.display = '';
		stateSelect.value = '';
	}
}

function openPopup() {
	child = window.open("/popup", "popup_why_ask","location=0,status=0,scrollbars=1,width=500,height=340");
	child.moveTo(100,100);
	child.focus();
}


/*validation*/
jQuery(document).ready(function() {
	jQuery('#share-your-izze-submit').validate({
		rules: {
			email : {
				email: true
			},
			emailconf : {
				email: true,
		      	equalTo: '#share-your-izze-submit_lead_email'
			}
		}
	});

	jQuery('#newsletter-form').validate({
		rules: {
			email : {
				email: true
			},
			emailconf : {
				email: true,
		      	equalTo: '#newsletter_email'
			}
		}
	});	
	
});


