// JavaScript Document
function explainProPricing() {
if (supportsYUI) {
try {
explainProPricingYUI();
} catch(e) {
explainProPricingAlert();
}
} else {
explainProPricingAlert();
}
}
function explainProPricingYUI() {
var html = "";
html += "Although the Professional Edition of FotoAlbum 6 lists for $39.95, you may be able to get it even cheaper with uprade or discount pricing.";
html += "
";
html += "
";
html += "- Upgrade from FotoAlbum Pro 5 - $19.95";
html += "
If you purchased a retail license for FotoAlbum Pro 5, you qualify for our version 6 upgrade pricing, and can upgrade from version 5 to version 6 for only $19.95.";
html += "
To get the upgrade pricing, simply add FotoAlbum Pro 6 to your cart. When you checkout, be sure to login with the same e-mail and password you used when purchasing FotoAlbum Pro 5, as we verify your prior purchase by your e-mail address, and automatically apply the discount.";
html += "
";
html += " ";
html += "- FotoShare and FotoStudio Subscriber Discounts - $29.95";
html += "
If you are current paid subscriber ($23.95 annually) to our FotoShare or FotoStudio online services, and you have never purchased a FotoAlbum Pro license, you qualify for a $10.00 subscriber discount, and can get FotoAlbum Pro 6 for only $29.95. New customers also get the subscriber discount if they purchase both FotoAlbum Pro and a FotoShare or FotoStudio subscription at the same time.";
html += "
To get the subscriber discount, simply login to your FotoShare or FotoStudio account first, and then add FotoAlbum Pro 6 to your cart. The cart automatically applies your subscriber discount if you purchase the pro upgrade when logged in.";
html += "
";
html += " ";
html += "
";
var caption = "Do I qualify for upgrade discounts to FotoAlbum Pro 6?";
showMessageDialog(caption, html, "righttextdlg");
}
function explainProPricingAlert() {
var CRLF = "\r";
var msg = "";
msg += "Do I qualify for upgrade discounts to FotoAlbum Pro 6?" + CRLF + CRLF;
msg += "Although the Professional Edition of FotoAlbum 6 lists for $39.95, you may be able to get it even cheaper with uprade or discount pricing.";
msg += CRLF + CRLF;
msg += "-- Upgrade from FotoAlbum Pro 5 --" + CRLF;
msg += "If you purchased a retail license for FotoAlbum Pro 5, you qualify for our version 6 upgrade pricing, and can upgrade from version 5 to version 6 for only $19.95.";
msg += CRLF + CRLF;
msg += "To get the upgrade pricing, simply add FotoAlbum Pro 6 to your cart. When you checkout, be sure to login with the same e-mail and password you used when purchasing FotoAlbum Pro 5, as we verify your prior purchase by your e-mail address, and automatically apply the discount.";
msg += CRLF + CRLF;
msg += "-- FotoShare and FotoStudio Subscriber Discounts --" + CRLF;
msg += "If you are current paid subscriber ($23.95 annually) to our FotoShare or FotoStudio online services, and you have never purchased a FotoAlbum Pro license, you qualify for a $10.00 subscriber discount, and can get FotoAlbum Pro 6 for only $29.95. New customers also get the subscriber discount if they purchase both FotoAlbum Pro and a FotoShare or FotoStudio subscription at the same time.";
msg += CRLF + CRLF;
msg += "To get the subscriber discount, simply login to your FotoShare or FotoStudio account first, and then add FotoAlbum Pro 6 to your cart. The cart automatically applies your subscriber discount if you purchase the pro upgrade after logging in.";
alert(msg);
}
function proOnlyAlert() {
alert("This feature is only in the FotoAlbum Pro Edition.");
}
function proOnlyYUI() {
showMessageDialog("Pro Feature", "This feature is only in the FotoAlbum Pro Edition.");
}
function proOnly() {
if (supportsYUI) {
try {
proOnlyYUI();
} catch(e) {
proOnlyAlert();
}
} else {
proOnlyAlert();
}
}
function proAndSubAlert() {
alert("This feature is only in the FotoAlbum Pro and Subscriber Editions.");
}
function proAndSubYUI() {
showMessageDialog("Pro Feature", "This feature is only in the FotoAlbum Pro and Subscriber Editions.");
}
function proAndSubOnly() {
if (supportsYUI) {
try {
proAndSubYUI();
} catch(e) {
proAndSubAlert();
}
} else {
proAndSubAlert();
}
}