// JavaScript Document

function my_redirect() {
_gaq.push(['_trackEvent', 'Form', 'Submit', 'Redirect to Paypal Payment']);
        var firstname = document.getElementById('firstname').value;
		var lastname = document.getElementById('lastname').value;
		var email = document.getElementById('email').value;
		var phone = document.getElementById('phone').value;
		var user = document.getElementById('user').value;
		var pass = document.getElementById('pass').value;
		var address = document.getElementById('address').value;
		var city = document.getElementById('city').value;
		var postal = document.getElementById('postal').value;
		var state = document.getElementById('state').value;
var url = 'https://www.paypal.com/cgi-bin/webscr?business=zola%40planzdiet%2ecom&return=http%3A%2F%2Fwww.planzworks.com%2Fcheckout-success&cancel_return=http%3A%2F%2Fwww.planzdiet.com%2Fnot-convinced&rm=2&currency_code=USD&lc=EN&bn=DDABVCQNPGTGG&no_note=1&charset=utf-8&notify_url=http%3A%2F%2Fwww.planzworks.com%2Fwp-content%2Fplugins%2Fmemberwing-membership-website-premium-w1%2Fnotify_paypal.php&no_shipping=2&email='+email+'&first_name='+firstname+'&last_name='+lastname+'&phone_number='+phone+'&address1='+address+'&city='+city+'&country=US&zip='+postal+'&state='+state+'&upload=1&cmd=_ext-enter&redirect_cmd=_cart&handling_cart=0.00&item_name_1=Plan+Z+by+Zola+Gold+Membership&amount_1=717.00&on0_1=Create+a+Plan+Z+Username%2A&os0_1='+user+'&on1_1=Create+a+Plan+Z+Password%2A&os1_1='+pass+'&quantity_1=1&item_number_1=PZBZGM&shipping_1=0.00&shipping2_1=0.00&handling_1=&tax_cart=0.00';
window.location = url;
}

function promo_redirect() {
_gaq.push(['_trackEvent', 'Form', 'Submit', 'Redirect to Paypal Payment']);
        var firstname = document.getElementById('firstname').value;
                var lastname = document.getElementById('lastname').value;
                var email = document.getElementById('email').value;
                var phone = document.getElementById('phone').value;
                var user = document.getElementById('user').value;
                var pass = document.getElementById('pass').value;
                var address = document.getElementById('address').value;
                var city = document.getElementById('city').value;
                var postal = document.getElementById('postal').value;
                var state = document.getElementById('state').value;
var url = 'https://www.paypal.com/cgi-bin/webscr?business=zola%40planzdiet%2ecom&return=http%3A%2F%2Fwww.planzworks.com%2Fcheckout-success&cancel_return=http%3A%2F%2Fwww.planzdiet.com%2Fnot-convinced&rm=2&currency_code=USD&lc=EN&bn=DDABVCQNPGTGG&no_note=1&charset=utf-8&notify_url=http%3A%2F%2Fwww.planzworks.com%2Fwp-content%2Fplugins%2Fmemberwing-membership-website-premium-w1%2Fnotify_paypal.php&no_shipping=2&email='+email+'&first_name='+firstname+'&last_name='+lastname+'&phone_number='+phone+'&address1='+address+'&city='+city+'&country=US&zip='+postal+'&state='+state+'&upload=1&cmd=_ext-enter&redirect_cmd=_cart&handling_cart=0.00&item_name_1=Plan+Z+by+Zola+Gold+Promo+Price&amount_1=587.00&on0_1=Create+a+Plan+Z+Username%2A&os0_1='+user+'&on1_1=Create+a+Plan+Z+Password%2A&os1_1='+pass+'&quantity_1=1&item_number_1=PZBZGPP&shipping_1=0.00&shipping2_1=0.00&handling_1=&tax_cart=0.00';
window.location = url;
}

function popfield() { 
 document.getElementById('awf_field-17096959').value=document.getElementById('em').value; 
} 
function blur1() { 
if (document.getElementById('em').value=='')
{
	document.getElementById('em').value='enter your email address';
	}
	else {
		document.getElementById('em').value=document.getElementById('em').value;
	}
}
function focus1() { 
if (document.getElementById('em').value=='enter your email address')
{
	document.getElementById('em').value='';
	}
	else {
		document.getElementById('em').value=document.getElementById('em').value;
	}
}
