// Excellware Dynaweb Company Specific javascript library
// It is OK to modify this script
// It is not replaced during a Dynamo Tools upgrade

// Last Revised: 10/04/08

// HoverOn - used in IE to change hover style for anchor links that don't
//   have an href=
//   usage: <a onMouseOver="HoverOn(this)" onMouseOut="HoverOff(this)"
//     onClick="dwWin('?p=progname&arg1=val1')">Click Here</a>

function HoverOn(arg)
{
 arg.style.textDecoration="underline";
 arg.style.cursor="pointer";
 arg.style.backgroundColor="#FFFF66";
}

function HoverOff(arg)
{
 arg.style.textDecoration="underline";
 arg.style.cursor="";
 arg.style.backgroundColor="";
}

function DSN()
{ 
 return "/cgi-bin/me.cgi";
}
