﻿$(document).ready(function() {
    $(".postal").focus(function() {
        if ($(this).val() == "XOXOXO") {
            $(this).attr('value', '');
            $(this).css({ color: "black" });
        }
    });
    $(".postal").blur(function() {
        if ($(this).val() == "") {
            $(this).attr('value', 'XOXOXO');
            $(this).css({ color: "#999999" });
        }
       
    });

    $(".phone").focus(function() {
        if ($(this).val() == "xxx-xxx-xxxx") {
            $(this).attr('value', '');
            $(this).css({ color: "black" });
        }
    });
    $(".phone").blur(function() {
        if ($(this).val() == "") {
            $(this).attr('value', 'xxx-xxx-xxxx');
            $(this).css({ color: "#999999" });
        }
    });
});

function RefreshCropSelection(chkbox, txtbox) {
    if ($(txtbox).val() != '') {
        $('#' + chkbox).attr('checked', true);
    } else {
        $('#' + chkbox).attr('checked', false);
    }

}

<!--
function redirectHome () {
    window.location.href = "http://www.bayercropscience.ca/";
}
//-->

