function updateTextForInstalledSmilebox()
{
	if ( !isSmileboxPropertyRegistrarReady() )
	{
		setTimeout( "updateTextForInstalledSmilebox", 250);
		return;
	}
	
	if (navigator.userAgent.indexOf("MSIE 6") != -1 && screen.deviceXDPI == 120)
	{
		var theBulletTag = document.getElementById("bullet1");
		theBulletTag.style.fontSize = "65%";
	
		theBulletTag = document.getElementById("bullet2");
		theBulletTag.style.fontSize = "65%";
		
		theBulletTag = document.getElementById("bullet3");
		theBulletTag.style.fontSize = "65%";
	}

    if (isClientInstalled())
    {
        var theBulletTag = document.getElementById("bullet1");
        theBulletTag.innerHTML = "Personalize this e-card with your photos or video.";

        theBulletTag = document.getElementById("bullet2");
        theBulletTag.innerHTML = "Share it by e-mail, post it to your blog, or print it.";

        theBulletTag = document.getElementById("bullet3");
        theBulletTag.innerHTML = "Click Download Design to get started.";

        var theDownloadButtonTag = document.getElementById("buttonImage");
        theDownloadButtonTag.src = '/globalImages/iframe/downloaddesign.gif';
    }
}

function getStarted(aPartner, aTemplateId, aCampaign)
{
	var theUrl;
    if (isClientInstalled())
    {
        theUrl = "http://www.smilebox.com/launchSmilebox.html?action=download"
                   + "&templateId=" + aTemplateId
                   + "&partner=" + aPartner
                   + "&campaign=" + aCampaign;
    }
	else
	{
		theUrl = getDownloadUrlAndPingGoogleAnalytics();	
	}
    window.open(theUrl);

}


