
<!--

// Begin -->
//<td class="SelectManualsActive"><a class="mainmenu" href="Contact_us.htm" onMouseover="showtip(this,event,Maps showing how to find us)" onMouseout="HideToolTip()">Our contact details</a></td>
//<td class="SelectManualsActive"><a class="mainmenu" href="Contact_us.htm" onMouseover="showtip(this,event,Maps showing how to find us)" onMouseout="HideToolTip()">Our contact details</a></td>

//This script write the active menu on each cars page

var ToolTipContact1 = "this.title = 'Our methods and experiences'";
var ToolTipContact2 = "this.title = 'Contact details including postal address'";
var ToolTipContact3 = "this.title = 'Maps showing how to find us'";
var ToolTipContact4 = "this.title = 'Payment methods we accept'";
var ToolTipContact5 = "this.title = 'VWrite and send a message to us - direct, not via your e-mail'";
var ToolTipContact6 = "this.title = 'Description of PayPal'";
var ToolTipContact7 = "this.title = 'Check your web browser for compatibility with this website'";

var Not_Current = '<td class="SelectManualsActive"><a class="mainmenu" ';
var Current = '<td class="SelectManualsCurrent"><a class="mainmenu_not_active"> ';
var Current_Active = '<td class="SelectManualsCurrent"><a class="mainmenu_current" ';

var Tip_Start = '" onMouseover="showtip(this,event,';
var Tip_End = ')" onMouseout="HideToolTip()">';
var Link_Prefix_Contact = "";

var About_Us = 'About us</a></td>';
var About_Us_Tip = Tip_Start + ToolTipContact1 + Tip_End;
var In_About_Us = "False";

var Contact_us = 'Our contact details</a></td>';
var Contact_us_Tip = Tip_Start + ToolTipContact2 + Tip_End;
var In_Contact_us = "False";

var How_To_Find_Us = 'How to find us</a></td>';
var How_To_Find_Us_Tip = Tip_Start + ToolTipContact3 + Tip_End;
var In_How_To_Find_Us = "False";

var Payment_methods = 'View payment methods</a></td>';
var Payment_methods_Tip = Tip_Start + ToolTipContact4 + Tip_End;
var In_Payment_methods = "False";

var Write_Message = 'Write a message</a></td>';
var Write_Message_Tip = Tip_Start + ToolTipContact5 + Tip_End;
var In_Write_Message = "False";

var PayPal_Description = 'What is PayPal ?</a></td>';
var PayPal_Description_Tip = Tip_Start + ToolTipContact6 + Tip_End;
var In_PayPal_Description = "False";

// determine the link prefix
ObtainRootURL();//get the base site URL
Link_Prefix_Contact = Site_Base_URL + "Contact/";

document.write('<table border="0" align="center" cellspacing="0" bordercolor="#000000"><tr>');
  	if (Thisurl.search("About_Us.htm") >= 12)
		{
	    document.write(Current + About_Us);
		} else {
	    document.write(Not_Current + 'href="' + Link_Prefix_Contact + 'About_Us.htm"' + About_Us_Tip + About_Us);
		}
  	if (Thisurl.search("Contact_us.htm") >= 12)
		{
	    document.write(Current + Contact_us);
		} else {
	    document.write(Not_Current + 'href="' + Link_Prefix_Contact + 'Contact_us.htm"' + Contact_us_Tip + Contact_us);
		}
  	if (Thisurl.search("How_To_Find_Us.htm") >= 12)
		{
	    document.write(Current + How_To_Find_Us);
		} else {
	    document.write(Not_Current + 'href="' + Link_Prefix_Contact + 'How_To_Find_Us.htm"' + How_To_Find_Us_Tip + How_To_Find_Us);
		}
document.write('</tr><tr>');
  	if (Thisurl.search("Payment_methods.htm") >= 12)
		{
	    document.write(Current + Payment_methods);
		} else {
	    document.write(Not_Current + 'href="' + Link_Prefix_Contact + 'Payment_methods.htm"' + Payment_methods_Tip + Payment_methods);
		}
  	if (Thisurl.search("Write_Message.php") >= 12)
		{
		document.write(Current + Write_Message);
		} else {
		document.write(Not_Current + 'href="' + Link_Prefix_Contact + 'Write_Message.php"' + Write_Message_Tip + Write_Message);
		}
	if (Thisurl.search("PayPal_Description.htm") >= 12)
		{
		document.write(Current + PayPal_Description);
   		} else {
		document.write(Not_Current + 'href="' + Link_Prefix_Contact + 'PayPal_Description.htm"' + PayPal_Description_Tip + PayPal_Description);
		}
document.write('</tr></table>');
  

// End -->

// -->