function showPopupResults () {	setTimeout(function() 	{ $.fn.colorbox({											width:"600px", 											height:"350px", 											iframe:true, 											opacity:.6, 											transition:"none",											speed:1, 											overlayClose:false, 											href:'http://www.mygovcost.org/wp-content/uploads/smp_plain_popup.html'}) 										}, 					1000);			}		$(document).ready(function() {	//alert('start show popup');		var smp_cookie_name_a = 'mgc_has_viewed_a_page';//1	var smp_cookie_name_b = 'mgc_has_seen_popup';//2	var smp_cookie_name_c = 'mgc_info_submitted';//3				c_value_a = $.cookie(smp_cookie_name_a);	c_value_b = $.cookie(smp_cookie_name_b);	c_value_c = $.cookie(smp_cookie_name_c);				if (c_value_c == null) {		// user has not submitted their email info previously.				if (c_value_a == null) {			//client has not view a page before this.  create cookie recording that the current page was viewed.			//alert('creating cookie a');			$.cookie(smp_cookie_name_a, '1', {expires: 30, path: '/'});		}					if (c_value_b == null && c_value_a == '1') {			//alert('trying to show popup');			//client has not seen the popup and this is the 2nd page they have viewed.					$.cookie(smp_cookie_name_b, '1', {expires: 30, path: '/'});			showPopupResults ();		}	}														});
