﻿// JScript File

function setHover(p_obj, p_over)
{
    if (p_over)
    {
        alert("in "+this);
    }
    else
    {
        alert("out "+this);
    }
}

alert("here");