
$(document).ready(
function()
{
	if ($('meta[name=no-fg-popup]').length) {
		//suppress popup
	} else {
		var time = 20000;

		var timesShown = 0;
		if ( $.cookie( 'popupshown' ) )
		{
			timesShown = $.cookie( 'popupshown' );
			time = 40000;
		}

		if ( timesShown < 2 )
		{
			$( '#popupcontent' ).dialog( { width: 550, modal: true, autoOpen: false,title: 'Get your Free Guide for a $1700 Vasectomy Reversal'});

			$.doTimeout( 'popup', time,
			function()
			{	
				$.cookie( 'popupshown', ++timesShown, { expires: 2, path: '/' } );
				$( '#popupcontent' ).dialog( 'open' );
			});
		}
	}
});
