// Show the privacy popup
function ShowPrivacy()
{
	window.open( "/Popups/Privacy.aspx", "", "width=520,height=380" );
}

// Show the Terms of Use
function ShowTermsofUse()
{
	window.open( "/Popups/TermsofUse.aspx", "", "width=520,height=650" );
}


// Show the "Share This Page" popup
function ShowShareThisPage( pageUrl )
{
	window.open( "/PopUps/ShareThisPage.aspx?page=" + pageUrl, "", "width=520,height=600" );
}

// Show the "Absolution Preview" popup
function ShowPreview( picNum )
{
	window.open( "/PopUps/AbsolutionPreview.aspx?pic=" + picNum, "", "width=660,height=700,scrollbars=yes" );
}

// Show the "Remembering your Information" popup
function ShowCookies()
{
	window.open( "/PopUps/Cookies.aspx", "", "height=370,width=525,resizable=0" );
}

// Show the "Send Ecard" popup
function SendEcard( imageID )
{
	window.open( "/PopUps/SendEcard.aspx?id=" + imageID, "", "height=595,width=700,resizable=0" );
}

// Show Success Story stories
function ShowStory( storyNum )
	{
		url = "/PopUps/" + ( storyNum == 1 ? "MichaelBrock.aspx" : "DavidSipes.aspx" );
		
		window.open( url, "", "width=560,height=530,scrollbars=yes" );
	}