﻿window.onerror = function () { return true }
var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip_AddToCart"] : document.getElementById? document.getElementById("dhtmltooltip_AddToCart") : ""

function ietruebody()
{
    return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip_AddToCart(thetext, thecolor, thewidth)
{
    if (ns6||ie)
    {
        if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
        if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
        tipobj.innerHTML=thetext
        enabletip=true
        return false
    }
}

function hideddrivetip_AddToCart()
{
    if (ns6||ie)
    {
        enabletip=false
        tipobj.style.visibility="hidden"
        tipobj.style.backgroundColor=''
        tipobj.style.width=''
    }
}