﻿// Generic Javascript Include file for the Retail Site

var contentWarningMsg = "This product may contain explicit content.";

function ContentWarning(rating)
{
    if (rating.toLowerCase() == 'r18+')
    {
        alert(contentWarningMsg);
    }
}

function LoginUserNameFormatter(textBox)
{
    if (textBox.value == "email address")
    {
        textBox.value = "";
    }
}

function LoginPasswordFormatter(textBox) {
    if (textBox.value == "password") {
        textBox.value = "";
    }
}