﻿function procNotify() { var b = document.getElementById("hidItmId").value; var a = document.getElementById("txtEmail").value; alert(b); ServerSideEmail(b, a) } $(function() { $(".rolloverSM").hover(function() { this.className = this.className.replace("o_", "h_"); }, function() { this.className = this.className.replace("h_", "o_") }); $(".rollover").hover(function() { this.className = this.className.replace("o_", "h_") + " Button rollover" }, function() { this.className = this.className.replace("h_", "o_") + " Button rollover" }); $(".rollover1").hover(function() { this.className = this.className.replace("n_", "h_") + " Button rollover1" }, function() { this.className = this.className.replace("h_", "n_") + " Button rollover1" }) }); function LP(a) { self.location = a } Array.prototype.remove = function(c, b) { var a = this.slice((b || c) + 1 || this.length); this.length = c < 0 ? this.length + c : c; return this.push.apply(this, a) };
// This function retrieves a cookie
function getCookie(name) {
    var cname = name + "=";
    var dc = document.cookie;

    if (dc.length > 0) {
        begin = dc.indexOf(cname);
        if (begin != -1) {
            begin += cname.length;
            end = dc.indexOf(";", begin);
            if (end == -1) end = dc.length;
            return unescape(dc.substring(begin, end));
        }
    }
    return null;
}

function setCookie(name, value, expires) {
    document.cookie = name + "=" + escape(value) + "; path=/" + ((expires == null) ? "" : "; expires=" + expires.toGMTString());
}