/*
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 suggested list.');
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 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 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>');

function exitTraining(skill) {
	window.location = 'Index.aspx?tabid=6';
}
