﻿
function ImageAspectRatio(img,JJImg,JJWidth,JJHeight) {

    //debugger;
    var JJOriginalImg = new Image();
      var image1 = document.getElementById(JJImg);
    image1.style.visibility = 'visible';
    image1.src = img.src;
    JJOriginalImg.src = img.src;
    
    var JJOriginalHeight, JJOriginalWidth;
    JJOriginalHeight = JJOriginalImg.height;
    JJOriginalWidth = JJOriginalImg.width;
    var JJPercent = 0;
    if (JJOriginalWidth >= JJWidth) {

        JJPercent = parseFloat(JJWidth / JJOriginalWidth);
        image1.width = (parseInt(JJOriginalWidth * JJPercent)).toString();
        image1.height = (parseInt(JJOriginalHeight * JJPercent)).toString();
        JJOriginalHeight = image1.height;
        JJOriginalWidth = image1.width;
        if (JJOriginalHeight >= JJHeight) {
            JJPercent = parseFloat(JJHeight / JJOriginalHeight);
            image1.width = JJOriginalWidth * JJPercent;
            image1.height = JJOriginalHeight * JJPercent;

        }
    }
    else if (JJOriginalHeight >= JJHeight) {
        JJPercent = parseFloat(JJHeight / JJOriginalHeight);
        image1.width = JJOriginalWidth * JJPercent;
        image1.height = JJOriginalHeight * JJPercent;
        if (JJOriginalWidth >= JJWidth) {
            JJPercent = parseFloat(JJWidth / JJOriginalWidth);
            image1.width = JJOriginalWidth * JJPercent;
            image1.height = JJOriginalHeight * JJPercent;

        }

    }
    
     else if (JJOriginalWidth <= JJWidth) {

        JJPercent = parseFloat(JJWidth / JJOriginalWidth);
        image1.width = (parseInt(JJOriginalWidth * JJPercent)).toString();
        image1.height = (parseInt(JJOriginalHeight * JJPercent)).toString();
        JJOriginalHeight = image1.height;
        JJOriginalWidth = image1.width;
        if (JJOriginalHeight >= JJHeight) {
            JJPercent = parseFloat(JJHeight / JJOriginalHeight);
            image1.width = JJOriginalWidth * JJPercent;
            image1.height = JJOriginalHeight * JJPercent;

        }
    }
    else if (JJOriginalHeight <= JJHeight) {
        JJPercent = parseFloat(JJHeight / JJOriginalHeight);
        image1.width = JJOriginalWidth * JJPercent;
        image1.height = JJOriginalHeight * JJPercent;
        if (JJOriginalWidth >= JJWidth) {
            JJPercent = parseFloat(JJWidth / JJOriginalWidth);
            image1.width = JJOriginalWidth * JJPercent;
            image1.height = JJOriginalHeight * JJPercent;

        }

    }
    
    else {
        JJImg.width = JJOriginalWidth;
        JJImg.height = JJOriginalHeight;
    }


}



function CheckValidation() {
    //debugger;
    var i = 0;
    var obj;
    var val;
    for (i = 0; i < CheckValidation.arguments.length; i++) {
        obj = CheckValidation.arguments[i];
        val = obj.split("-");
        if (val[0] == "txt") { // This is for TextBox Validation
            var txt = document.getElementById(val[1]);
            if (!txt) {
                continue;
            }
            if (val[2] == "r") {  // If TextBox is Require Field
                if (val[3] == "n") {  // Whether Textbox is for n-Require Field or w-WebSite or e-EMailID
                    if (txt.value.replace(/\n/g, "") == "") {
                        alert(val[4]);
                        txt.focus();
                        return false;
                    }
                }
                else if (val[3] == "w") {
                    var Site = /^(?:http:\/\/)?(?:[\w-]+\.)+[a-z]{2,6}$/i
                    if (!Site.test(txt.value)) {
                        alert(val[4]);
                        txt.focus();
                        return false;
                    }

                }
                else if (val[3] == "e") {
                    var Email = /^(?:\w+\.?)*\w+@(?:\w+\.)+\w+$/;
                    var emailto=/^([0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\w]*[0-9a-zA-Z]\.)+[a-zA-Z]{2,9})$/;
                    if (!Email.test(txt.value))
                    {
                        if (!emailto.test(txt.value))
                        {
                            alert(val[4]);
                            txt.focus();
                            return false;
                        }                        
                    }                    
                }
            }
            else if (val[2] == "n") { // if TextBox is not Require Field
                if (txt.value.replace(/\n/g, "") != "") {

                    if (val[3] == "w") {
                        var Site = /^(?:http:\/\/)?(?:[\w-]+\.)+[a-z]{2,6}$/i
                        if (!Site.test(txt.value)) {
                            alert(val[4]);
                            txt.focus();
                            return false;
                        }
                    }
                    else if (val[3] == "e") {
                        var Email = /^(?:\w+\.?)*\w+@(?:\w+\.)+\w+$/;
                        if (!Email.test(txt.value)) {
                            alert(val[4]);
                            txt.focus();
                            return false;
                        }
                    }
                }
            }

        }
        else if (val[0] == "ddl") { // This is For DropDownList Validation
            var ddl = document.getElementById(val[1]);
            if (!ddl) {
                continue;
            }
            if (val[2] == "r") {    // Whether Dddl is require field of its depend on its TextBox like Quentity and TextBox
                if (ddl.selectedIndex == 0) {
                    alert(val[4]);
                    ddl.focus();
                    return false;
                }
            }
            else if (val[2] == "n") {
                var txt = document.getElementById(val[3]);
                if (txt.value.replace(/\n/g, "") != "") {
                    if (ddl.selectedIndex == 0) {
                        alert(val[4]);
                        ddl.focus();
                        return false;
                    }
                }

            }

        }
        else if (val[0] == "hf") {
        var hf = document.getElementById(val[1]);
        if (!hf) {
            continue;
        }
            if (hf.value == "") {
                alert(val[3]);
                document.getElementById(val[2]).focus();
                return false;
            }

        }
        else if (val[0] == "chk") {

       // debugger;
        var chk = document.getElementById(val[1]);
        if (!chk) {
            continue;
        }
        var count = 0;
        if (val[2] == "r") {
            var chklist = chk.getElementsByTagName("INPUT");
            var i = 0;
            for (i = 0; i < chklist.length; i++) {
                if (chklist[i].checked) {
                    count = parseInt(count) + 1;
                }
            }
        }

        if (count < val[3]) {
            alert(val[4]);
            return false;
        }
        
        }
        
    }
    
    return true;
}

var ALERT_TITLE = "Oops!";
var ALERT_BUTTON_TEXT = "Ok";


function createCustomAlert(txt) {

 //   debugger;
    // shortcut reference to the document object
    d = document;

    // if the modalContainer object already exists in the DOM, bail out.
    if (d.getElementById("modalContainer")) return;

    // create the modalContainer div as a child of the BODY element
    mObj = d.getElementsByTagName("body")[0].appendChild(d.createElement("div"));
    mObj.id = "modalContainer";
    // make sure its as tall as it needs to be to overlay all the content on the page
    mObj.style.height = document.documentElement.scrollHeight + "px";

    // create the DIV that will be the alert 
    alertObj = mObj.appendChild(d.createElement("div"));
    alertObj.id = "alertBox";
    // MSIE doesnt treat position:fixed correctly, so this compensates for positioning the alert
    if (d.all && !window.opera) alertObj.style.top = document.documentElement.scrollTop + "px";
    // center the alert box
    alertObj.style.left = (d.documentElement.scrollWidth - alertObj.offsetWidth) / 2 + "px";
    alertObj.style.position = 'absolute';
    // create an H1 element as the title bar
    h1 = alertObj.appendChild(d.createElement("h1"));
    h1.appendChild(d.createTextNode(ALERT_TITLE));

    // create a paragraph element to contain the txt argument
    msg = alertObj.appendChild(d.createElement("p"));
    msg.appendChild(d.createTextNode(txt));

    // create an anchor element to use as the confirmation button.
    btn = alertObj.appendChild(d.createElement("a"));
    btn.id = "closeBtn";
    btn.appendChild(d.createTextNode(ALERT_BUTTON_TEXT));
    btn.href = "#";
    // set up the onclick event to remove the alert when the anchor is clicked
    btn.onclick = function() { removeCustomAlert(); return false; }


}

// removes the custom alert from the DOM
function removeCustomAlert() {
    document.getElementsByTagName("body")[0].removeChild(document.getElementById("modalContainer"));
}



	//============================================

//debugger;
window.onload = Function()
{
      //debugger;
    setInterval("SessionRenew()", 30000);
    //SessionRenew();

}

function SessionRenew() {
     var URL;
    // debugger;
    URL = "http://" + window.location.host + "/Atco-2009/session.aspx";
    if (window.XMLHttpRequest) { //Mozilla, Firefox, Opera 8.01, Safari
        reqXML = new XMLHttpRequest();
        //reqXML.onreadystatechange = BuildXMLResults;
        reqXML.open("GET", URL, true);
        //reqXML.open("GET", window.location.host + "//Atco-2008//Session.aspx", true);
        reqXML.send(null);
    }
    else if (window.ActiveXObject) { //IE
        reqXML = new ActiveXObject("Microsoft.XMLHTTP");
        if (reqXML) {
            //reqXML.onreadystatechange = BuildXMLResults;
            reqXML.opedn("GET", URL, true);
            reqXML.send();
        }
    }
    else { //Older Browsers
        alert("Your Browser does not support Ajax!");
    }
}

//function getImageWidth(myImage) {
//    var x, obj;
//    if (document.layers) {
//        var img = getImage(myImage);
//        return img.width;
//    } else {
//        return getElementWidth(myImage);
//    }
//    return -1;
//}

//function getImageHeight(myImage) {
//    var y, obj;
//    if (document.layers) {
//        var img = getImage(myImage);
//        return img.height;
//    } else {
//        return getElementHeight(myImage);
//    }
//    return -1;
//}

function enlargimg(img, img1) {
    //debugger;
    var i = new Image();
    var image1 = document.getElementById(img1);
    image1.style.visibility = 'visible';
    image1.src = img.src;
    i.src = img.src;
////    var imgString = 'image1 = document.getElementById("ProductDisplay1_Image1")';
    ////    eval(imgString);

    var oldWidth = i.width;
    var oldHeight = i.height;
    if (oldWidth > 400) {
        image1.width = 400;
    }
    else {
        image1.width = oldWidth;
    }
    if (oldHeight > 400) {
        image1.height = 400;
    }
    else {
        image1.height = oldHeight;
    }

//    var left1 = (screen.width / 2) - (image1.width / 2);
//    var top1 = (screen.height / 2) - (image1.height / 2);
//    image1.style.left = left1;
//    image1.style.top = top1;


//////    var pnlimg = document.getElementById("ProductDisplay1_Image1");
//////    var pnl = document.getElementById(panel1);
//////    document.getElementById("ProductDisplay1_Image1").src = img.src;
//////    document.getElementById(panel1).style.visibility = 'visible';
//////    document.getElementById(panel1).style.zIndex = 1001;
//////    //debugger;
//////    imgString = 'theImg = document.getElementById("ProductDisplay1_Image1")';
//////    eval(imgString);
//////    oldWidth = theImg.width;
//////    oldHeight = theImg.height;
//////    if (oldWidth > 500) {
//////        theImg.width = 500;
//////    }
//////    if (oldHeight > 500) {
//////        theImg.height = 500;
//////    }
//////    grayOut(true, "");
//////    document.getElementById(panel1).style.display = 'inline';
   

}

function grayOut(vis, options) {

    var optionsoptions = options || {};
    var zindex = options.zindex || 50;
    var opacity = options.opacity || 70;
    var opaque = (opacity / 100);
    var bgcolor = options.bgcolor || '#000000';
    var dark = document.getElementById('form1');
    if (!dark) {
       
        var tbody = document.getElementsByTagName("body")[0];
        var tnode = document.createElement('div');
        tnode.style.position = 'absolute';
        tnode.style.top = '0px';
        tnode.style.left = '0px';
        tnode.style.overflow = 'hidden';
        tnode.style.display = 'none';
        tnode.id = 'darkenScreenObject';
        tbody.appendChild(tnode);
        dark = document.getElementById('form1');
    }

    if (vis) {
        var pageWidth = '100%';
        var pageHeight = '100%';
        dark.style.opacity = opaque;
        dark.style.MozOpacity = opaque;
        dark.style.filter = 'alpha(opacity=' + opacity + ')';
        dark.style.zIndex = zindex;
        dark.style.backgroundColor = bgcolor;
        dark.style.width = pageWidth;
        dark.style.height = pageHeight;
        dark.style.display = 'block';
    }
    else {
        dark.style.display = 'inline';
    }
}

function enlargimgout(img, image1) {
    //debugger;
    document.getElementById(image1).style.visibility = "hidden";
    //document.getElementById(image1).width = 0;
    //document.getElementById(image1).height = 0;
    //grayOut(false, "");
    return false;
   

}



function JJTechSpecClick(btn, tblbtn, hf) {
     //debugger;

    if (document.getElementById(hf).value == "") {
        alert("First Enter Product Name.!");
        return false;
    }

    if (navigator.appName == "Microsoft Internet Explorer") {
        document.getElementById(tblbtn).style.display = "inline";
    }
    else {
        document.getElementById(tblbtn).style.display = "inline";

        //document.getElementById(tblbtn).style.display = "table-row";

    }


    btn.style.cursor = "pointer";
    btn.style.color = "#961f55";
    switch (tblbtn) {
        case "tblApplication":

            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            document.getElementById("txtProductApplication").focus();
            break;
        case "tblCataloge":



            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            //var rbl = document.getElementById("rblProductCataloge");
//            if (!document.getElementById("rblProductCataloge").disabled) {
//                document.getElementById("rblProductCataloge").focus();
//            }
            //document.getElementById("rblProductCataloge").focus();
            break;
        case "tblConsumables":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            document.getElementById("txtc_cname").focus();
            break;
        case "tblguwarranty":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";
            //            if (!document.getElementById("rblGW").disabled) {
            //                document.getElementById("rblGW").focus();
            //            }
            break;
        case "tblInstallationCommissioning":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            if (!document.getElementById("rblICIsApplicable").disabled) {
                document.getElementById("rblICIsApplicable").focus();
            }
            break;
        case "tblProductMSDS":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

//            if (!document.getElementById("rblProductMSDS").disabled) {
//                document.getElementById("rblProductMSDS").focus();
//            }
            break;
        case "tblPackagingDetails":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            //            if (!document.getElementById("ddlPackingType").disabled) {
            //                document.getElementById("ddlPackingType").focus();
            //            }
            break;
        case "tblStandards":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            //            if (!document.getElementById("ddlStandard").disabled) {
            //                document.getElementById("ddlStandard").focus();
            //            }
            break;
        case "tblSpecialNotes":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            //document.getElementById("txtProdSpecInstr_Instruction").focus();
            break;
        case "tblTechnicalSpecification":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            //document.getElementById("ddlProTecSpeParameter").focus();
            break;
        case "tblFeature":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            document.getElementById("txtProductFeature").focus();
            break;
        case "tblAccIncluded":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            document.getElementById("ddlIncAcc").focus();
            break;
        case "tblAccOptional":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            document.getElementById("ddlOptionalAccessories").focus();
            break;
        case "tblSpareParts":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

            document.getElementById("ddlSpareParts").focus();
            break;
        case "tblUserManual":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblWearAndTear").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnwearntear").style.color = "black";

//            if (!document.getElementById("rblUserManual").disabled) {
//                document.getElementById("rblUserManual").focus();
//            }
            break;
        case "tblWearAndTear":

            document.getElementById("tblApplication").style.display = "none";
            document.getElementById("tblCataloge").style.display = "none";
            document.getElementById("tblConsumables").style.display = "none";
            document.getElementById("tblguwarranty").style.display = "none";
            document.getElementById("tblInstallationCommissioning").style.display = "none";
            document.getElementById("tblProductMSDS").style.display = "none";
            document.getElementById("tblPackagingDetails").style.display = "none";
            document.getElementById("tblStandards").style.display = "none";
            document.getElementById("tblSpecialNotes").style.display = "none";
            document.getElementById("tblTechnicalSpecification").style.display = "none";
            document.getElementById("tblFeature").style.display = "none";
            document.getElementById("tblAccIncluded").style.display = "none";
            document.getElementById("tblAccOptional").style.display = "none";
            document.getElementById("tblSpareParts").style.display = "none";
            document.getElementById("tblUserManual").style.display = "none";

            document.getElementById("btnApplicatin").style.color = "black";
            document.getElementById("btncatalogue").style.color = "black";
            document.getElementById("btnconsumable").style.color = "black";
            document.getElementById("btnGuaranty").style.color = "black";
            document.getElementById("btnInsttComm").style.color = "black";
            document.getElementById("btnproductmsds").style.color = "black";
            document.getElementById("btnpckdetails").style.color = "black";
            document.getElementById("btnstandards").style.color = "black";
            document.getElementById("btnspecialnote").style.color = "black";
            document.getElementById("btntechspec").style.color = "black";
            document.getElementById("btnfeature").style.color = "black";
            document.getElementById("btnaccincluded").style.color = "black";
            document.getElementById("btnaccoptional").style.color = "black";
            document.getElementById("btnspareparts").style.color = "black";
            document.getElementById("btnUserManual").style.color = "black";
            break;

    }



    return false;
}




function TechSpecClick(btn, tblbtn) {
     //debugger;

    if (navigator.appName == "Microsoft Internet Explorer") {
        document.getElementById(tblbtn).style.display = "inline";
    }
    else {
        document.getElementById(tblbtn).style.display = "inline";

        //document.getElementById(tblbtn).style.display = "table-row";
        //document.getElementById(tblbtn).style.margin = "auto";

    }

    
    btn.style.cursor = "pointer";
    btn.style.color = "#961f55";
    switch (tblbtn) {
        case "ctl00_ContentPlaceHolder1_tblApplication":
                        
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            document.getElementById("ctl00_ContentPlaceHolder1_txtProductApplication").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblCataloge":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            //var rbl = document.getElementById("ctl00_ContentPlaceHolder1_rblProductCataloge");
//            if (!document.getElementById("ctl00_ContentPlaceHolder1_rblProductCataloge").disabled) {
//                document.getElementById("ctl00_ContentPlaceHolder1_rblProductCataloge").focus();
//            }
            //document.getElementById("ctl00_ContentPlaceHolder1_rblProductCataloge").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblConsumables":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            document.getElementById("ctl00_ContentPlaceHolder1_txtc_cname").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblguwarranty":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";
//            if (!document.getElementById("ctl00_ContentPlaceHolder1_rblGW").disabled) {
//                document.getElementById("ctl00_ContentPlaceHolder1_rblGW").focus();
//            }
            break;
        case "ctl00_ContentPlaceHolder1_tblInstallationCommissioning":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            if (!document.getElementById("ctl00_ContentPlaceHolder1_rblICIsApplicable").disabled) {
                document.getElementById("ctl00_ContentPlaceHolder1_rblICIsApplicable").focus();
            }
            break;
        case "ctl00_ContentPlaceHolder1_tblProductMSDS":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

//            if (!document.getElementById("ctl00_ContentPlaceHolder1_rblProductMSDS").disabled) {
//                document.getElementById("ctl00_ContentPlaceHolder1_rblProductMSDS").focus();
//            }
            break;
        case "ctl00_ContentPlaceHolder1_tblPackagingDetails":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

//            if (!document.getElementById("ctl00_ContentPlaceHolder1_ddlPackingType").disabled) {
//                document.getElementById("ctl00_ContentPlaceHolder1_ddlPackingType").focus();
//            }
            break;
        case "ctl00_ContentPlaceHolder1_tblStandards":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

//            if (!document.getElementById("ctl00_ContentPlaceHolder1_ddlStandard").disabled) {
//                document.getElementById("ctl00_ContentPlaceHolder1_ddlStandard").focus();
//            }
            break;
        case "ctl00_ContentPlaceHolder1_tblSpecialNotes":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            //document.getElementById("ctl00_ContentPlaceHolder1_txtProdSpecInstr_Instruction").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblTechnicalSpecification":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            //document.getElementById("ctl00_ContentPlaceHolder1_ddlProTecSpeParameter").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblFeature":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            document.getElementById("ctl00_ContentPlaceHolder1_txtProductFeature").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblAccIncluded":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            document.getElementById("ctl00_ContentPlaceHolder1_ddlIncAcc").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblAccOptional":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            document.getElementById("ctl00_ContentPlaceHolder1_ddlOptionalAccessories").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblSpareParts":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

            document.getElementById("ctl00_ContentPlaceHolder1_ddlSpareParts").focus();
            break;
        case "ctl00_ContentPlaceHolder1_tblUserManual":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnwearntear").style.color = "black";

//            if (!document.getElementById("ctl00_ContentPlaceHolder1_rblUserManual").disabled) {
//                document.getElementById("ctl00_ContentPlaceHolder1_rblUserManual").focus();
//            }
            break;
        case "ctl00_ContentPlaceHolder1_tblWearAndTear":

            document.getElementById("ctl00_ContentPlaceHolder1_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblCataloge").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblguwarranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblProductMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblPackagingDetails").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblStandards").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccIncluded").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblAccOptional").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_tblUserManual").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_btnApplicatin").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btncatalogue").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnconsumable").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnGuaranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnInsttComm").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnproductmsds").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnpckdetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnstandards").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspecialnote").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btntechspec").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnfeature").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccincluded").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnaccoptional").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnspareparts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_btnUserManual").style.color = "black";
            break;

    }



    return false;
}



// For Product Tech Inf User Control

function TechSpecUCClick(btn, tblbtn,hf) {
     //debugger;
    if (hf) {
        if (document.getElementById(hf).value == "") {
            alert("First Ente Product Name.!");
            return false;
        }

    }



    if (navigator.appName == "Microsoft Internet Explorer") {
        document.getElementById(tblbtn).style.display = "inline";
    }
    else {
        document.getElementById(tblbtn).style.display = "table-row";

    }

    
    btn.style.cursor = "pointer";
    btn.style.backgroundColor = "#961f55";
    switch (tblbtn) {
        case "Product_technical_information1_tblApplication":
                        
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            document.getElementById("Product_technical_information1_txtProductApplication").focus();
            break;
        case "Product_technical_information1_tblCataloge":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            //var rbl = document.getElementById("Product_technical_information1_rblProductCataloge");
//            if (!document.getElementById("Product_technical_information1_rblProductCataloge").disabled) {
//                document.getElementById("Product_technical_information1_rblProductCataloge").focus();
//            }
            //document.getElementById("Product_technical_information1_rblProductCataloge").focus();
            break;
        case "Product_technical_information1_tblConsumables":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            document.getElementById("Product_technical_information1_txtc_cname").focus();
            break;
        case "Product_technical_information1_tblguwarranty":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";
//            if (!document.getElementById("Product_technical_information1_rblGW").disabled) {
//                document.getElementById("Product_technical_information1_rblGW").focus();
//            }
            break;
        case "Product_technical_information1_tblInstallationCommissioning":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            if (!document.getElementById("Product_technical_information1_rblICIsApplicable").disabled) {
                document.getElementById("Product_technical_information1_rblICIsApplicable").focus();
            }
            break;
        case "Product_technical_information1_tblProductMSDS":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

//            if (!document.getElementById("Product_technical_information1_rblProductMSDS").disabled) {
//                document.getElementById("Product_technical_information1_rblProductMSDS").focus();
//            }
            break;
        case "Product_technical_information1_tblPackagingDetails":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

//            if (!document.getElementById("Product_technical_information1_ddlPackingType").disabled) {
//                document.getElementById("Product_technical_information1_ddlPackingType").focus();
//            }
            break;
        case "Product_technical_information1_tblStandards":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

//            if (!document.getElementById("Product_technical_information1_ddlStandard").disabled) {
//                document.getElementById("Product_technical_information1_ddlStandard").focus();
//            }
            break;
        case "Product_technical_information1_tblSpecialNotes":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            //document.getElementById("Product_technical_information1_txtProdSpecInstr_Instruction").focus();
            break;
        case "Product_technical_information1_tblTechnicalSpecification":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            //document.getElementById("Product_technical_information1_ddlProTecSpeParameter").focus();
            break;
        case "Product_technical_information1_tblFeature":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            document.getElementById("Product_technical_information1_txtProductFeature").focus();
            break;
        case "Product_technical_information1_tblAccIncluded":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            document.getElementById("Product_technical_information1_ddlIncAcc").focus();
            break;
        case "Product_technical_information1_tblAccOptional":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            document.getElementById("Product_technical_information1_ddlOptionalAccessories").focus();
            break;
        case "Product_technical_information1_tblSpareParts":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

            document.getElementById("Product_technical_information1_ddlSpareParts").focus();
            break;
        case "Product_technical_information1_tblUserManual":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblWearAndTear").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnwearntear").style.backgroundColor = "#4F565E";

//            if (!document.getElementById("Product_technical_information1_rblUserManual").disabled) {
//                document.getElementById("Product_technical_information1_rblUserManual").focus();
//            }
            break;
        case "Product_technical_information1_tblWearAndTear":

            document.getElementById("Product_technical_information1_tblApplication").style.display = "none";
            document.getElementById("Product_technical_information1_tblCataloge").style.display = "none";
            document.getElementById("Product_technical_information1_tblConsumables").style.display = "none";
            document.getElementById("Product_technical_information1_tblguwarranty").style.display = "none";
            document.getElementById("Product_technical_information1_tblInstallationCommissioning").style.display = "none";
            document.getElementById("Product_technical_information1_tblProductMSDS").style.display = "none";
            document.getElementById("Product_technical_information1_tblPackagingDetails").style.display = "none";
            document.getElementById("Product_technical_information1_tblStandards").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpecialNotes").style.display = "none";
            document.getElementById("Product_technical_information1_tblTechnicalSpecification").style.display = "none";
            document.getElementById("Product_technical_information1_tblFeature").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccIncluded").style.display = "none";
            document.getElementById("Product_technical_information1_tblAccOptional").style.display = "none";
            document.getElementById("Product_technical_information1_tblSpareParts").style.display = "none";
            document.getElementById("Product_technical_information1_tblUserManual").style.display = "none";

            document.getElementById("Product_technical_information1_btnApplicatin").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btncatalogue").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnconsumable").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnGuaranty").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnInsttComm").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnproductmsds").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnpckdetails").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnstandards").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspecialnote").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btntechspec").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnfeature").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccincluded").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnaccoptional").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnspareparts").style.backgroundColor = "#4F565E";
            document.getElementById("Product_technical_information1_btnUserManual").style.backgroundColor = "#4F565E";
            break;

    }



    return false;
}


//====================================================================

//For Surfer Product detail================

function mousehand(Img) {
  
    Img.style.cursor = "pointer";
 
    }

function imgmouseover(Img, tblImg) {
  //debugger;
    
    document.getElementById(tblImg).style.display = "inline";
    Img.style.cursor = "pointer";
    Img.style.color = "#961f55";
    switch (tblImg) {
        case "ProductDetails1_tblApplication":
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblCatalog":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblConsumables":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblGarantyWaranty":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblInstComm":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblMSDS":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblPackaging":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblStandardApproval":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblSpecialNotes":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblTechSpeci":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblFeature":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblIncludedAccess":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblOptionalAccess":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblSpareParts":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblUserManual":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblWearAndTear").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgWearAndTear").style.color = "black";
            break;
        case "ProductDetails1_tblWearAndTear":
            document.getElementById("ProductDetails1_tblApplication").style.display = "none";
            document.getElementById("ProductDetails1_tblConsumables").style.display = "none";
            document.getElementById("ProductDetails1_tblGarantyWaranty").style.display = "none";
            document.getElementById("ProductDetails1_tblInstComm").style.display = "none";
            document.getElementById("ProductDetails1_tblMSDS").style.display = "none";
            document.getElementById("ProductDetails1_tblPackaging").style.display = "none";
            document.getElementById("ProductDetails1_tblStandardApproval").style.display = "none";
            document.getElementById("ProductDetails1_tblSpecialNotes").style.display = "none";
            document.getElementById("ProductDetails1_tblTechSpeci").style.display = "none";
            document.getElementById("ProductDetails1_tblCatalog").style.display = "none";
            document.getElementById("ProductDetails1_tblFeature").style.display = "none";
            document.getElementById("ProductDetails1_tblIncludedAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblOptionalAccess").style.display = "none";
            document.getElementById("ProductDetails1_tblSpareParts").style.display = "none";
            document.getElementById("ProductDetails1_tblUserManual").style.display = "none";

            document.getElementById("ProductDetails1_ImgApplication").style.color = "black";
            document.getElementById("ProductDetails1_ImgCatalog").style.color = "black";
            document.getElementById("ProductDetails1_ImgConsumables").style.color = "black";
            document.getElementById("ProductDetails1_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ProductDetails1_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ProductDetails1_ImgMSDS").style.color = "black";
            document.getElementById("ProductDetails1_ImgPackagingDetails").style.color = "black";
            document.getElementById("ProductDetails1_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpecialNotes").style.color = "black";
            document.getElementById("ProductDetails1_ImgTechSpecification").style.color = "black";
            document.getElementById("ProductDetails1_ImgFeatures").style.color = "black";
            document.getElementById("ProductDetails1_ImgIncludedAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgOptionalAccess").style.color = "black";
            document.getElementById("ProductDetails1_ImgSpareParts").style.color = "black";
            document.getElementById("ProductDetails1_ImgUserManual").style.color = "black";
            break;

    }



    return false;
}

function imgmouseout(Img, tblImg) {
     
   // Img.style.backgroundColor="#4F565E";
    return false;
}


//=========================================================================

//For Buyer Product detail================

function imgmouseoverbyr(Img, tblImg) {
 
    document.getElementById(tblImg).style.display = "inline";
     Img.style.cursor = "pointer";
    Img.style.color = "#961f55";
    switch (tblImg) {
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblApplication":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblFeature":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgWearAndTear").style.color = "black";
            break;
        case "ctl00_ContentPlaceHolder1_ProductDetails_tblWearAndTear":
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblApplication").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblConsumables").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblGarantyWaranty").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblInstComm").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblMSDS").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblPackaging").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblStandardApproval").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpecialNotes").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblTechSpeci").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblCatalog").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblFeature").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblIncludedAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblOptionalAccess").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblSpareParts").style.display = "none";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_tblUserManual").style.display = "none";

            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgApplication").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgCatalog").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgConsumables").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgGuarantyWarranty").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgInstallationCommissioning").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgMSDS").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgPackagingDetails").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgProductStandardApproval").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpecialNotes").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgTechSpecification").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgFeatures").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgIncludedAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgOptionalAccess").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgSpareParts").style.color = "black";
            document.getElementById("ctl00_ContentPlaceHolder1_ProductDetails_ImgUserManual").style.color = "black";
            break;

    }



    return false;
}

function imgmouseoutbyr(Img, tblImg) {
     //debugger;
    //Img.style.borderColor="white";
    // Img.style.height = 25+"px";
    //Img.style.width = 97+"px";

    //document.getElementById(tblImg).style.display="none";
    //Img.style.backgroundColor="#4F565E";
    return false;
}

// JScript File

// 1.Function which Allows NUmerics Only
function AddNewConfirm(valuee,flag,aa)
    {
           
          var str=document.URL;
          var rep=str.substring(0,str.lastIndexOf("/")+1) ;
         
           if (valuee.value=="Add New")
               {       
                switch (flag)
                    {
                        case "F":
                        if(confirm("Are Your Sure Your Want To Add New Record In Factory Master Form.?"))
                        window.location=rep+"supplier-factory-master.aspx";
                        else
                        valuee.selectedIndex=0;
                        break;
                        case "W":
                        if(confirm("Are Your Sure Your Want To Add New Record In WareHouse Master Form.?"))
                        window.location=rep+"supplier-warehouse-master.aspx";
                        else
                        valuee.selectedIndex=0;
                        break;
                        case "C":
                        if(confirm("Are Your Sure Your Want To Add New Record In Client Master Form.?"))
                        window.location=rep+"client-master.aspx";
                        else
                        valuee.selectedIndex=0;
                        break;
                        
                    }

                       
//                    if(confirm("Are You Sure You Want To Add In Master Form.?"))   
//                    {
//                    
//                                     
//                    //window.location="http://localhost:3145/Atcomaart/tst1.aspx";
//                    }
               }
    }
//function made by kalpesh for go back during site navigation.
function goBack()
{
window.history.back()
}

function textMaxLength(obj, maxLength, evt)
{
var charCode=(evt.which) ? evt.which : event.keyCode
var max = maxLength - 0;
var text = obj.value;
if(text.length > max)
{
var ignoreKeys = [8,46,37,38,39,40,35,36];
for(i=0;i<ignoreKeys.length;i++)
{
if(charCode==ignoreKeys[i])
{
return true;
}
}
return false;
}else
{
return true;
}
} 



function blockNonNumbers(obj, e, allowDecimal, allowNegative)
{

	var key;
	var isCtrl = false;
	var keychar;
	var reg;
		
	if(window.event) {
		key = e.keyCode;
		isCtrl = window.event.ctrlKey
	}
	else if(e.which) {
		key = e.which;
		isCtrl = e.ctrlKey;
	}
	if (isNaN(key)) return true;
		
	keychar = String.fromCharCode(key);
	
	
	// check for backspace or delete, or if Ctrl was pressed
	if (key == 8 || isCtrl)
	{
		return true;
	}

	reg = /\d/;
	var isFirstN = allowNegative ? keychar == '-' && obj.value.indexOf('-') == -1 : false;
	var isFirstD = allowDecimal ? keychar == '.' && obj.value.indexOf('.') == -1 : false;
	
	return isFirstN || isFirstD || reg.test(keychar);
}



function Quotation_CalcAmt()
     {
        var ctrlQty= document.getElementById("TxtParQuan");
        var ctrlUPrice= document.getElementById("TxtParUPrice");
        var ctrlPrice= document.getElementById("TxtParTPrice");
                
        if(ctrlUPrice.value=="") 
        {
            ctrlUPrice.value=0;
        }  
        if(ctrlQty.value=="") 
        {
            ctrlQty.value=0;
        }   
        if(ctrlPrice.value=="") 
        {
            ctrlPrice.value=0;
        }      
                    
        var va =parseInt(ctrlQty.value) * parseFloat(ctrlUPrice.value) + 0;
        va = va.toFixed(2)
        ctrlPrice.value = va;
     
     }
     
  
function Quotation_CalcNet()
{
        var ctrlTotal= document.getElementById("TxtParTotal");
        var ctrlSC= document.getElementById("TxtParSerCharges");
        var ctrlDisc= document.getElementById("TxtParDiscount");
        var ctrlTax= document.getElementById("txtParTax");
        var ctrlNetPrice= document.getElementById("TxtParNetCharge");
        var ctrlExcisePer= document.getElementById("txtExcisePer");
        var ctrlCessPer= document.getElementById("txtCessPer");
        var ctrlExcise= document.getElementById("txtExcise");
        var ctrlCess= document.getElementById("txtCess");
        var ctrlVat= document.getElementById("txtPriceVatAmount");
        
        if(ctrlSC.value=="") 
        {
            ctrlSC.value=0;
        }  
        if(ctrlDisc.value=="") 
        {
            ctrlDisc.value=0;
        }
        if(ctrlNetPrice.value=="") 
        {
            ctrlNetPrice.value=0;
        }  
        if(ctrlTax.value=="") 
        {
            ctrlTax.value=0;
        }
        if(ctrlExcisePer.value=="") 
        {
            ctrlExcisePer.value=0;
        }
        var exe = parseFloat(ctrlExcisePer.value) * parseFloat(ctrlTotal.value) / 100
        exe = exe.toFixed(2);
        ctrlExcise.value = exe;
        
        if(ctrlCessPer.value=="") 
        {
            ctrlCessPer.value=0;
        }

        var cess = parseFloat(ctrlCessPer.value) * parseFloat(ctrlExcise.value) / 100
        cess = cess.toFixed(2);
        ctrlCess.value = cess;
        
        if(ctrlExcise.value=="") 
        {
            ctrlExcise.value=0;
        }
        if(ctrlCess.value=="") 
        {
            ctrlCess.value=0;
        }
        
        if(ctrlVat.value=="") 
        {
            ctrlVat.value=0;
        }

        var net =parseFloat(ctrlTotal.value) + parseFloat(ctrlSC.value) + parseFloat(ctrlTax.value)+ parseFloat(ctrlExcise.value) + parseFloat(ctrlCess.value) + parseFloat(ctrlVat.value) - parseFloat(ctrlDisc.value) ;
        net = net.toFixed(2);
        ctrlNetPrice.value =net;
}




 function Inward_CalcAmt()
     {
        var InwardPriceTotal= document.getElementById("txtPriceTotal");
        var InwardPriceGrossAmount= document.getElementById("txtPriceGrossAmount");
        var InwardPriceFreightInsurance= document.getElementById("txtPriceFreightInsurance");
        var InwardPriceOctroi= document.getElementById("txtPriceOctroi");
        var InwardPriceTransPortation= document.getElementById("txtPriceTransPortation");
        var InwardPriceVatAmount= document.getElementById("txtPriceVatAmount");
        
        var InwardExcisePer= document.getElementById("txtExcisePer");
        var InwardCessPer= document.getElementById("txtCessPer");
        var InwardExcise= document.getElementById("txtExciseAmt");
        var InwardCess= document.getElementById("txtCessAmt");
  
        if(InwardPriceTotal.value=="") 
        {
            InwardPriceTotal.value=0;
        }  
        if(InwardPriceGrossAmount.value=="") 
        {
            InwardPriceGrossAmount.value=0;
        }   
        if(InwardPriceFreightInsurance.value=="") 
        {
            InwardPriceFreightInsurance.value=0;
        }      
        if(InwardPriceOctroi.value=="") 
        {
            InwardPriceOctroi.value=0;
        }  
        if(InwardPriceTransPortation.value=="") 
        {
            InwardPriceTransPortation.value=0;
        }  
        if(InwardPriceVatAmount.value=="") 
        {
            InwardPriceVatAmount.value=0;
        }  
   
       InwardPriceGrossAmount.value=parseInt(InwardPriceTotal.value);

      InwardPriceGrossAmount.value=parseInt(InwardPriceGrossAmount.value) + parseInt(InwardPriceFreightInsurance.value);
      InwardPriceGrossAmount.value=parseInt(InwardPriceGrossAmount.value) + parseInt(InwardPriceOctroi.value);
      InwardPriceGrossAmount.value=parseInt(InwardPriceGrossAmount.value) + parseInt(InwardPriceTransPortation.value);
      InwardPriceGrossAmount.value=parseInt(InwardPriceGrossAmount.value) + parseInt(InwardPriceVatAmount.value);
      
      if(InwardExcisePer.value=="") 
        {
            InwardExcisePer.value=0;
        }
        var ex = parseFloat(InwardExcisePer.value) * parseFloat(InwardPriceTotal.value) / 100
        ex = ex.toFixed(2);
        InwardExcise.value = ex;
        InwardPriceGrossAmount.value=parseInt(InwardPriceGrossAmount.value) + parseInt(InwardExcise.value);
      
        if(InwardCessPer.value=="") 
        {
            InwardCessPer.value=0;
        }

        var ces = parseFloat(InwardCessPer.value) * parseFloat(InwardExcise.value) / 100
        ces = ces.toFixed(2);
        InwardCess.value = ces;
        InwardPriceGrossAmount.value=parseInt(InwardPriceGrossAmount.value) + parseInt(InwardCess.value);
      
        if(InwardExcise.value=="") 
        {
            InwardExcise.value=0;
        }
        if(InwardCess.value=="") 
        {
            InwardCess.value=0;
        }
        
     }  
     
     
 function Outward_CalcAmt()
     {
        var OutwardPriceTotal= document.getElementById("txtPriceTotal");
        var OutwardGrossAmount= document.getElementById("txtGrossAmount");
        var OutwardSalesTax= document.getElementById("txtSalesTax");
        var OutwardCst= document.getElementById("txtCst");
        var OutwardVatAmount= document.getElementById("txtPriceVatAmount");
        
        var OutwardExcisePer= document.getElementById("txtExcisePer");
        var OutwardCessPer= document.getElementById("txtCessPer");
        var OutwardExcise= document.getElementById("txtExciseAmt");
        var OutwardCess= document.getElementById("txtCessAmt");
  
        if(OutwardPriceTotal.value=="") 
        {
            OutwardPriceTotal.value=0;
        }  
        if(OutwardGrossAmount.value=="") 
        {
            OutwardGrossAmount.value=0;
        }   
        if(OutwardSalesTax.value=="") 
        {
            OutwardSalesTax.value=0;
        }      
        if(OutwardCst.value=="") 
        {
            OutwardCst.value=0;
        }  
        if(OutwardVatAmount.value=="") 
        {
            OutwardVatAmount.value=0;
        }  
         
       OutwardGrossAmount.value=parseInt(OutwardPriceTotal.value);

      OutwardGrossAmount.value=parseInt(OutwardGrossAmount.value) + parseInt(OutwardSalesTax.value);
      OutwardGrossAmount.value=parseInt(OutwardGrossAmount.value) + parseInt(OutwardCst.value);
      OutwardGrossAmount.value=parseInt(OutwardGrossAmount.value) + parseInt(OutwardVatAmount.value);
      
      if(OutwardExcisePer.value=="") 
        {
            OutwardExcisePer.value=0;
        }
        var ex = parseFloat(OutwardExcisePer.value) * parseFloat(OutwardPriceTotal.value) / 100
        ex = ex.toFixed(2);
        OutwardExcise.value = ex;
        OutwardGrossAmount.value=parseInt(OutwardGrossAmount.value) + parseInt(OutwardExcise.value);
      
        if(OutwardCessPer.value=="") 
        {
            OutwardCessPer.value=0;
        }

        var ces = parseFloat(OutwardCessPer.value) * parseFloat(OutwardExcise.value) / 100
        ces = ces.toFixed(2);
        OutwardCess.value = ces;
        OutwardGrossAmount.value=parseInt(OutwardGrossAmount.value) + parseInt(OutwardCess.value);
      
        if(OutwardExcise.value=="") 
        {
            OutwardExcise.value=0;
        }
        if(OutwardCess.value=="") 
        {
            OutwardCess.value=0;
        }
        
     }  
               
   
//  2. Allows All Numerics, Comma , Hiphen , ( , ) ,dot, SpaceBar
//  , = 44   (=40    )=41   SpaceBar = 32   - =45    .=46    BackSpace=8
// Applicapable for More then one PhoneNos(or Fax Nos ) in a TextBox

function CheckNumericValue(e)
{  
    var key; 
    key = e.which ? e.which : e.keyCode;
    if ((key>=48 && key<=57) || key == 40 || key==41 || key == 44 || key ==8 || key==32 || key == 45 || key == 46)
        {return true;}
    else
    {
       alert("Enter numeric value only !");
        return false;
    }
}


function CheckZipCode(e)
{  
    var key; 
    key = e.which ? e.which : e.keyCode;
    if ((key>=48 && key<=57) || key == 44 || key ==8 || key==32 || key == 45 || key == 46)
        {return true;}
    else
    {
        alert("Not Valid !");
        return false;
    }
}


function BlockNumericValue(e)
{  
    var ckey; 
    ckey = e.which ? e.which : e.keyCode;
    if ((ckey>=65 && ckey<=90) || (ckey>=97 && ckey<=122) || ckey==46 || ckey==32 || ckey==8)
        {return true;}
    else
    {
        alert("Not Valid !");
        return false;
    }
}

 function CheckNull(id)
 {
                    
         if (Trim(document.getElementById(id).value)=="")
         {
              alert("Can't Accept Blank...!");
              document.getElementById(id).focus();
         }    
}


function Check_Null(str) 
{
 for (var i=0; ((str.charAt(i)<=" ")&&(str.charAt(i)!="")); i++);
 return str.substring(i,str.length);
}
function RTrim(str) 
{
 for (var i=str.length-1; ((str.charAt(i)<=" ")&&(str.charAt(i)!="")); i--);
 return str.substring(0,i+1);
}

function Trim(str) 
{
 return Check_Null(RTrim(str));
}



 function toUpper(id)
 {
    document.getElementById(id).value = document.getElementById(id).value.toUpperCase();
 }

 //  3. Check ZipCode
//  Allows Numerics
function AllowNumeric(e)
{
    var key = e.which ? e.which : e.keyCode;
    //var objval=obj.value;
    //var objlen=objval.length;                (key>=97 && key<=122) || key==46 || key==32 || key==8 
    if (key>=48 && key<=57)
     {return true;}
    else
     {return false;}
}

function machine_CalcAmt()
     {

var amount=document.getElementById("txtamount");
var servicetax=document.getElementById("Txtservicetax");
var totalamount=document.getElementById("Txttotalamt");
if(amount.value=="")
{
amount.value=0;
}
if(servicetax.value=="")
{
servicetax.value=0;
}
if(totalamount.value=="")
{
totalamount.value=0;
}

var amount =parseFloat(parseFloat(amount.value) + parseFloat(servicetax.value) * parseFloat(amount.value)/100);
amount=amount.toFixed(2);
totalamount.value=amount
}


function isDate(dateStr)
 {
var datePat = /^(\d{1,2})(\/|-)(\d{1,2})(\/|-)(\d{4})$/;
var matchArray = dateStr.match(datePat); // is the format ok?
if (matchArray == null) {
alert("Please enter your Date as dd/mm/yyyy. Your current selection reads: " + dateStr);
return false;
}
day = matchArray[1]; // p@rse date into variables
month = matchArray[3];
year = matchArray[5];
if (month < 1 || month > 12) { // check month range
alert("Month must be between 1 and 12.");
return false;
}
if (day < 1 || day > 31) {
alert("Day must be between 1 and 31.");
return false;
}
if ((month==4 || month==6 || month==9 || month==11) && day==31) {
alert("Month "+month+" doesn`t have 31 days!");
return false;
}
if (month == 2) { // check for february 29th
var isleap = (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0));
if (day > 29 || (day==29 && !isleap)) {
alert("February " + year + " doesn`t have " + day + " days!");
return false;
}
}
return true; // date is valid
}


function checkForValidstartDate(){
var ddlVMonth = document.getElementById("ddlstartmonth");
var ddlVDay = document.getElementById("Ddlstartday");
var ddlVYear = document.getElementById("Ddlstartyear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("Ddlstartday").focus();
return(false);
}
return(true);
}



function checkForValidendDate(){
var ddlVMonth = document.getElementById("Ddlendmonth");
var ddlVDay = document.getElementById("Ddlendday");
var ddlVYear = document.getElementById("ddlendyear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("Ddlendday").focus();
return(false); }
return(true);
}


 function timeDifference(laterdate,earlierdate) 
    {
    var difference = laterdate.getTime() - earlierdate.getTime();
    var daysDifference = Math.floor(difference/1000/60/60/24);
    document.getElementById("txtnoofyrs").value = daysDifference;
}
 
function datediff()
{

var ddlVstartMonth = document.getElementById("ddlstartmonth");
var ddlVstartDay = document.getElementById("Ddlstartday");
var ddlVstartYear = document.getElementById("Ddlstartyear");
var ddlVendMonth = document.getElementById("Ddlendmonth");
var ddlVendDay = document.getElementById("Ddlendday");
var ddlVendYear = document.getElementById("ddlendyear");
if((ddlVstartDay.value=="DD")||(ddlVstartMonth.value=="MM")||(ddlVstartYear.value=="YYY")||(ddlVendDay.value=="DD")||(ddlVendMonth.value=="MM")||(ddlVendYear.value=="YYY"))
{
var laterdate=0;
var earlierdate;
}
var laterdate=new Date(ddlVendYear.value,ddlVendMonth.value-1,ddlVendDay.value);
var earlierdate=new Date(ddlVstartYear.value,ddlVstartMonth.value-1,ddlVstartDay.value);
if((ddlVstartDay.value=="DD")||(ddlVstartMonth.value=="MM")||(ddlVstartYear.value=="YYYY")||(ddlVendDay.value=="DD")||(ddlVendMonth.value=="MM")||(ddlVendYear.value=="YYYY"))
{
var laterdate=0;
var earlierdate=0;
}
timeDifference(laterdate,earlierdate);
}

function paymentcheck()
{
var amountpaid=document.getElementById("Txtdue");
var enteramount=document.getElementById("txtpaymentamt");
var amountcollect=document.getElementById("Txtamountpaid");
if ((parseFloat(amountpaid.value))<((parseFloat(enteramount.value))+parseFloat(amountcollect.value)))
{
alert("Payment Amount More than Total Contract Value");
//alert(amountpaid.value+""+enteramount.value+""+amountcollect.value+"Total"+((parseFloat(enteramount.value))+parseFloat(amountcollect.value)));
//  document.write("amount"+amountpaid.value);
document.getElementById("txtpaymentamt").focus();
}
}


function datecheck()
{
var ddlVstartMonth = document.getElementById("ddlstartmonth");
var ddlVstartDay = document.getElementById("Ddlstartday");
var ddlVstartYear = document.getElementById("Ddlstartyear");
var ddlVendMonth = document.getElementById("Ddlendmonth");
var ddlVendDay = document.getElementById("Ddlendday");
var ddlVendYear = document.getElementById("ddlendyear");

if (ddlVstartYear.value>ddlVendYear.value)
{
alert("Select Correct End Year!");
document.getElementById("Ddlstartyear").focus();
}
else if((ddlVstartYear.value==ddlVendYear.value)&&(ddlVstartMonth.value>ddlVendMonth))
{
alert("Select Correct Month!");
document.getElementById("ddlstartmonth").focus();
}
else if ((ddlVstartYear.value==ddlVendYear.value)&&(ddlVstartMonth.value==ddlVendMonth)&&(ddlVstartDay.value>ddlVendDay.value))
{
alert("Select Correct Day!");
document.getElementById("Ddlstartday").focus();
}
}

function checkForpaymentDate(){
var ddlVMonth = document.getElementById("ddlmonth");
var ddlVDay = document.getElementById("Ddlday");
var ddlVYear = document.getElementById("Ddlyear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("Ddlday").focus();
return(false);
}
return(true);
}


function Service_GrossAmt()
{
    
        var ctrlTotal= document.getElementById("txtPriceTotal");
        var ctrlSTax= document.getElementById("txtSalesTax");
        var ctrlCst= document.getElementById("txtCst");
        var ctrlGAmt= document.getElementById("txtGrossAmount");
        var ctrlTax= document.getElementById("TxtTax");
        var ctrlVat= document.getElementById("txtPriceVatAmount");
        var ctrlExcisePer= document.getElementById("TxtExcisePer");
        var ctrlCessPer= document.getElementById("TxtCessPer");
        var ctrlExcise= document.getElementById("TxtExcise");
        var ctrlCess= document.getElementById("TxtCess");
             
        if (ctrlTotal.value=="")
        {
        ctrlTotal.value = 0;
        }
           
        if(ctrlSTax.value=="") 
        {
            ctrlSTax.value=0;
        }  
        if(ctrlCst.value=="") 
        {
            ctrlCst.value=0;
        }   
        if(ctrlGAmt.value=="") 
        {
            ctrlGAmt.value=0;
        }  
        if(ctrlTax.value=="") 
        {
            ctrlTax.value=0;
        } 
        if(ctrlExcisePer.value=="") 
        {
            ctrlExcisePer.value=0;
        }
        var exe = parseFloat(ctrlExcisePer.value) * parseFloat(ctrlTotal.value) / 100
        exe = exe.toFixed(2);
        ctrlExcise.value = exe;
        
        if(ctrlCessPer.value=="") 
        {
            ctrlCessPer.value=0;
        }

        var cess = parseFloat(ctrlCessPer.value) * parseFloat(ctrlExcise.value) / 100
        cess = cess.toFixed(2);
        ctrlCess.value = cess;
        
        if(ctrlExcise.value=="") 
        {
            ctrlExcise.value=0;
        }
        if(ctrlCess.value=="") 
        {
            ctrlCess.value=0;
        }
        if(ctrlVat.value=="") 
        {
            ctrlVat.value=0;
        }     
                    
        var va =parseFloat(ctrlSTax.value) + parseFloat(ctrlCst.value) + parseFloat(ctrlExcise.value) + parseFloat(ctrlCess.value) + parseFloat(ctrlTotal.value) + parseFloat(ctrlTax.value) + parseFloat(ctrlVat.value) + 0;
        va = va.toFixed(2)
        ctrlGAmt.value = va;

}


function CashChecked()
{

document.getElementById("RdbBtnChq").checked = false;
document.getElementById("RdbBtnDD").checked = false;
document.getElementById("RdbBtnCreditCard").checked = false;
document.getElementById("txtchqDDNo").value = "";
document.getElementById("ddlPaymentBank").SelectedIndex = -1;
document.getElementById("ddlPaymentBranch").SelectedIndex = -1;
document.getElementById("txtCreditCardno").value = "";
document.getElementById("txtTransactionSlipNo").value = "";
document.getElementById("txtchqDDNo").disabled = true;
document.getElementById("ddlPaymentBank").disabled = true;
document.getElementById("ddlPaymentBranch").disabled = true;
document.getElementById("txtCreditCardno").disabled = true;
document.getElementById("txtTransactionSlipNo").disabled = true;
//document.getElementById("txtPaymentAmount").Focus();
  }
  
  
  function ChequeChecked()
{

document.getElementById("RdbBtnCash").checked = false;
document.getElementById("RdbBtnDD").checked = false;
document.getElementById("RdbBtnCreditCard").checked = false;
document.getElementById("txtchqDDNo").value = "";
document.getElementById("lblPaymentDDNo").value = "Cheque No";
document.getElementById("ddlPaymentBank").SelectedIndex = -1;
document.getElementById("ddlPaymentBranch").SelectedIndex = -1;
document.getElementById("txtCreditCardno").value = "";
document.getElementById("txtTransactionSlipNo").value = "";
document.getElementById("txtchqDDNo").disabled = false;
document.getElementById("ddlPaymentBank").disabled = false;
document.getElementById("ddlPaymentBranch").disabled = false;
document.getElementById("txtCreditCardno").disabled = true;
document.getElementById("txtTransactionSlipNo").disabled = true;
//document.getElementById("txtchqDDNo").Focus();

   }
  
  
  
  function DDChecked()
{

document.getElementById("RdbBtnChq").checked = false;
document.getElementById("RdbBtnCash").checked = false;
document.getElementById("RdbBtnCreditCard").checked = false;
document.getElementById("txtchqDDNo").value = "";
document.getElementById("ddlPaymentBank").SelectedIndex = -1;
document.getElementById("ddlPaymentBranch").SelectedIndex = -1;
document.getElementById("lblPaymentDDNo").value = "DD No";
document.getElementById("txtCreditCardno").value = "";
document.getElementById("txtTransactionSlipNo").value = "";
document.getElementById("txtchqDDNo").disabled = false;
document.getElementById("ddlPaymentBank").disabled = false;
document.getElementById("ddlPaymentBranch").disabled = false;
document.getElementById("txtCreditCardno").disabled = true;
document.getElementById("txtTransactionSlipNo").disabled = true;
//document.getElementById("txtchqDDNo").Focus();

           
  }
  
  
  function CreditChecked()
{

document.getElementById("RdbBtnChq").checked = false;
document.getElementById("RdbBtnDD").checked = false;
document.getElementById("RdbBtnCash").checked = false;
document.getElementById("txtchqDDNo").value = "";
document.getElementById("ddlPaymentBank").SelectedIndex = -1;
document.getElementById("ddlPaymentBranch").SelectedIndex = -1;
document.getElementById("txtCreditCardno").value = "";
document.getElementById("txtTransactionSlipNo").value = "";
document.getElementById("txtchqDDNo").disabled = true;
document.getElementById("ddlPaymentBank").disabled = true;
document.getElementById("ddlPaymentBranch").disabled = true;
document.getElementById("txtCreditCardno").disabled = false;
document.getElementById("txtTransactionSlipNo").disabled = false;
//document.getElementById("txtCreditCardno").Focus();
       
  }


function checkpercentage()
{
    var excise=document.getElementById("txtExcisePer");
    var cess=document.getElementById("txtCessPer");
       if(excise.value>100)
    {
        alert("Please Enter Excise Percentage Below 100");
        document.getElementById("txtExcisePer").focus();
    }
    else
    {
        excise.value
    }
    if(cess.value>100)
    {
        alert("Please Enter Cess Percentage Below 100");
        document.getElementById("txtCessPer").focus();
    }
    
    
 }
  
  function CheckAdvPercentage()
  {
   var advance=document.getElementById("txtAdv");
   if(advance.value>100)
    {
        alert("Please Enter Advance Percentage Below 100");
        document.getElementById("txtAdv").focus();
    }    
  }
  
 function DateChecks()
{
var ddlVMonth = document.getElementById("ddlMonth");
var ddlVDay = document.getElementById("txtWorkingDays");
var ddlVYear = document.getElementById("ddlyear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("txtWorkingDays").focus();
return(false);
}
return(true);
}



function checkForpickupDate(){
var ddlVMonth = document.getElementById("ddlMonthofPickup");
var ddlVDay = document.getElementById("ddlDayofPickup");
var ddlVYear = document.getElementById("ddlYearofPickup");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("ddlDayofPickup").focus();
return(false);
}
return(true);
}

function checkDate()
{
var ddlVMonth = document.getElementById("ddlCheckingMonth");
var ddlVDay = document.getElementById("ddlCheckingDay");
var ddlVYear = document.getElementById("ddlCheckingYear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("ddlCheckingDay").focus();
return(false);
}
return(true);
}

function allowarrows(e)
{
    var ckey;
    ckey=e.which ? e.which : e.keycode;
    if (ckey==37 ||ckey==38 ||ckey==39 ||ckey==40  )
    {
    return true;
    }
    else
    {
    //alert("Not valid !");
    return false;
    }
}


//  java scripts used in Sent Faulty Parts Details - Added  by Senthil Kumar on 171106
function checkForproblemdate(){
var ddlVMonth = document.getElementById("ddlProblemMonth");
var ddlVDay = document.getElementById("ddlProblemDay");
var ddlVYear = document.getElementById("ddlProblemYear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("ddlProblemDay").focus();
return(false); 
}

return(true);
}




function checkForsentdate(){
var ddlVMonth = document.getElementById("ddlSentMonth");
var ddlVDay = document.getElementById("ddlSentDay");
var ddlVYear = document.getElementById("ddlSentYear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("ddlSentDay").focus();
return(false); }
return(true);
}



 function checkForRMAdate(){
var ddlVMonth = document.getElementById("ddlRmaMonth");
var ddlVDay = document.getElementById("ddlRmaday");
var ddlVYear = document.getElementById("ddlRmaYear");
if (!isDate(ddlVDay.value + '/' + ddlVMonth.value + '/' + ddlVYear.value))
{ 
document.getElementById("ddlRmaday").focus();
return(false); }
return(true);
}



function pbsentdatechecking()
{
var ddlVstartMonth = document.getElementById("ddlProblemMonth");
var ddlVstartDay = document.getElementById("ddlProblemDay");
var ddlVstartYear = document.getElementById("ddlProblemYear");
var ddlVendMonth = document.getElementById("ddlSentMonth");
var ddlVendDay = document.getElementById("ddlSentDay");
var ddlVendYear = document.getElementById("ddlSentYear");


if (ddlVstartYear.value>ddlVendYear.value)
{
alert("Select Correct Sent Year!");
document.getElementById("ddlSentYear").focus();
}
else if((ddlVstartYear.value==ddlVendYear.value)&&(ddlVstartMonth.value>ddlVendMonth.Value))
{
alert("Select Correct Sent Month!");
document.getElementById("ddlSentMonth").focus();
}
else if ((ddlVstartYear.value==ddlVendYear.value)&&(ddlVstartMonth.value==ddlVendMonth.value)&&(ddlVstartDay.value>ddlVendDay.value))
{
alert("Select Correct Sent Day!");
document.getElementById("ddlSentDay").focus();
}
}



function alldatechecking()
{
var ddlVendMonth = document.getElementById("ddlSentMonth");
var ddlVendDay = document.getElementById("ddlSentDay");
var ddlVendYear = document.getElementById("ddlSentYear");
var ddlVRMAMonth = document.getElementById("ddlRmaMonth");
var ddlVRMADay = document.getElementById("ddlRmaday");
var ddlVRMAYear = document.getElementById("ddlRmaYear");

if (ddlVendYear.value>ddlVRMAYear.value)
{
alert("Select Correct RMA Year!");
document.getElementById("ddlRmaYear").focus();
}
else if((ddlVendYear.value==ddlVRMAYear.value)&&(ddlVendMonth.value>ddlVRMAMonth.value))
{
alert("Select Correct RMA Month!");
document.getElementById("ddlRmaMonth").focus();
}
else if ((ddlVendYear.value==ddlVRMAYear.value)&&(ddlVendMonth.value==ddlVRMAMonth.value)&&(ddlVendDay.value>ddlVRMADay.value))
{
alert("Select Correct RMA Day!");
document.getElementById("ddlRmaday").focus();
}
}
// Till here  - sent faulty Parts Details




// Fn Used in Approval - Added by Prabhu On 181106
 function ValidAmount()
{
var grossamt=document.getElementById("txtGrossAmt");
var totpaid=document.getElementById("txtTotalAmtPaid");
var amt=document.getElementById("txtAmount");
var bal=parseFloat(grossamt.value)-parseFloat(totpaid.value)
if((parseFloat(amt.value))>(bal))
{
alert("Entered Amount is More than Balance Amount");
document.getElementById("txtAmount").focus();
}
}
// Till here

//detele message with contact
function ConfrmMsg()
{
pageIsValid = Page_ClientValidate();

   if(pageIsValid)
   {
    if (confirm('Are you sure you want to delete this record and its related contact details?'))
    return true;
    else
    return false;
   }
   else
   {
    return false;
   }
}

function DeleteMsg()
{
//debugger;
pageIsValid = Page_ClientValidate();
 if(pageIsValid)
 {
   if (confirm('Are you Sure! You want to Delete?'))
   return true;
   else
   return false;
 }
 else
 { 
   return false;
  }
   
}
function numbersonly(e)
{

        var unicode=e.charCode? e.charCode : e.keyCode
        // if (unicode!=8||unicode!=9)
        if (unicode<8||unicode>9)
            {
            //if the key isn't the backspace key or tab key (which we should allow)
            if (unicode<48||unicode>57 || unicode==13 ) //if not a number
          
           
            return false  //disable key press
        }
    }
function UpdateMsg()
{
pageIsValid = Page_ClientValidate();

   if(pageIsValid)
   {
            if (confirm('Are you Sure! You want to Update?'))
                return true;
            else
                return false;
   }
     else
     {
        return false;
     }
}

//dynamic for all
function SaveConfirm()
{
debugger;

    pageIsValid = Page_ClientValidate();
    if(pageIsValid)
    {
        if (confirm('Are you Sure! You want to Save?'))
                return true;
        else
                return false;
    }
    else
    {
        return false;
    }
}             
//for supplier module (masters) with contact 
function SaveMsg(e)
{
//debugger;
pageIsValid = Page_ClientValidate();
          
    if(pageIsValid)
    {
    var ctl1;
     ctl1 = document.getElementById(e);
        
        if (ctl1.value == "0")
        {    
            if (confirm('Are you Sure! You want to Save?'))
                return true;
            else
                return false;
        }
        else
        {
            return true;
        }
     }
     else
     {
        return false;
     }
   
}
   function setScrollPositionGrid(id, row_number) {
    document.getElementById(id).scrollTop = row_number * 23;
}
   