var tooltip_messages = new Array();
tooltip_messages[1]="<center>No images and reduced color for faster and more economical printing.  Remember to enable printing background in your browser.";
var tooltip_titles = new Array();
tooltip_titles[1]="<center>We try to be nice to your printer.";
tooltip_titles[2]="<center>Quote Basket";
var basket_messages = new Array();
basket_messages[0]="Click here to add this part to your Quote Basket.";
basket_messages[1]="Click here to remove this part from your Quote Basket.";
function tooltip(obj,msgid,actionid)
{	// document.status="MSGID:"+msgid+" ACTIONID:"+actionid;
	// document.bgColor="red";
	obj.T_BORDERCOLOR="#435A85";
	obj.T_BORDERWIDTH=1;
	obj.T_TITLECOLOR="#FF9966";
	obj.T_STATIC=true;
	obj.T_ABOVE=true;
	obj.T_BGCOLOR="#EEEEEE";
	obj.T_OFFSETX=(-150);
	obj.T_OFFSETY=(20);
	obj.T_WIDTH=470;
	obj.T_DELAY=500;
	switch (actionid)
	{	case 0:
			break;
		case 1:
			obj.T_TITLE=tooltip_titles[msgid];
			break;
	}
	switch (msgid)
	{	case 2:
			break;
		default:
			return tooltip_messages[msgid];
	}
}
