/*
Implemntation:
<A href='javascript:void(0);' onmouseover="doTooltip(event,3)" onmouseout="hideTip()">Link Text</A>
The number three in the above example references messages[3] in the messages array 
*/

var tipFollowMouse	= false;	
var tipWidth		= 220;
var offX		 	= 12;	// how far from mouse to show tip
var offY		 	= 12; 
var tipFontFamily 	= "arial, helvetica, sans-serif";
var tipFontSize		= "8pt";
var tipFontColor	= "#000000";
var tipBgColor		= "#FFFFFF"; 
var origBgColor 	= tipBgColor; // in case no bgColor set in array
var tipBorderColor 	= "#0B3D91";
var tipBorderWidth 	= 1;
var tipBorderStyle 	= "solid";
var tipPadding	 	= 5;

var messages = new Array();

messages[0] = new Array('','<b>Company</b><br />This is the name of your employer or place of business. Type the first few letters of the name and then select from the filtered list of companies.<br /><br /> If your company is not in the list please select "Unknown" and then contact the Deal US In office so we can update your record.');
messages[1] = new Array('','<b>Association</b><br />This is the association which you or your employer may be a member of. Choose one of the four associations listed or select unknown if you are not sure.');
messages[2] = new Array('','<b>Email Format</b><br />This is the format in which you would like the registration confirmation email to be displayed. Please choose either html or text format from the drop down list.');
messages[3] = new Array('','<b>Email</b><br />The registration confirmation, password reminder, and purchase receipt emails will be sent to this email address.');
messages[4] = new Array('','<b>Password</b><br />This is the password you will use to sign in to the Deal Us In site and the online test.');
messages[5] = new Array('','<b>Which program to access?</b><p>High Bandwidth : Use this link to access larger video clips. Ideal for "high-speed" connections, including DSL and Cable modems.</p><p>Low Bandwidth : Use this link to access faster downloading video clips. Ideal for slower connections, including 56k modems and other slower/shared networks.</p>');
messages[6] = new Array('','<p>The e-mail login for this website is the same for ProServe Liquor Staff Training,  Responsible Gambling, Reel Facts, or Responsible Drinking, ProTect Security Staff Training. </p><p>If you have taken one or more of these programs, the e-mail login is your e-mail address that you registered with.</p><p> If you have forgotten your password click on "Forgot Password" under the main menu. </p><p>Contact AGLC program administration if you have any further questions at 1-877-436-6336.</p>');
messages[7] = new Array('','<p>The drop down list will show people who haven\'t passed any <em>DealUsIn</em> courses in the last 3 years and who are tied to a company/Licence that is selected for this seminar.</p><p>It is possible that someone may be tied to an old or different Company/Licence and therefore will not show up in the list.</p>');


function mailInfo() {
    var v1 = 'info';
    var v2 = 'dealusin%23aglc%23ca';
    return ("mail" + "to:" + v1 + "@" + v2.replace(/%23/g, "."));
}
