function runemailcollect_old(){
	cookie = $.cookie("oc");
	$.cookie("oc", "yes", {expires:365, path:'/' });
		
	$('#optinModal').lightbox_me({centered:true});
	
	$('#optinForm').validate({
		rules: {
			pf_Email: {
				required: true,
				email: true
			}
		},
		messages: {
			pf_Email: "Har du oppgitt feil e-postadresse?"
		},
		submitHandler: function(form) {				 
			$('#optinSend').hide();
			$('#optinLoading').show();
			$('#optinEmail2').val($('#optinEmail').val());
			var dataString = $('#optinForm').serialize();            	    
			$.ajax({
				type: "POST",
				url: "{'/pingbull_module/list/stage/1'|ezurl('no','full')}",
				data: dataString, 
				success: function() {
					$('#optinTips').hide();
					$('#optinForm').hide();
					$('#optinForm2').fadeIn();
				}
			});
		}
	});
	
	$('#optinForm2').validate({
		submitHandler: function(form) {				 
			$('#optinSend2').hide();
			$('#optinLoading2').show();
			var dataString = $('#optinForm2').serialize();
				
			$.ajax({
				type: "POST",
				url: "{'/pingbull_module/list/stage/2'|ezurl('no','full')}",
				data: dataString, 
				success: function() {
					$('#optinForm2').hide();
					$('#optinOk').fadeIn();
				}
			});
		}
	});
}
