<!--

/***********************************************
* Cool DHTML tooltip script II- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

// Text of tooltips - amend as necessary

var tip = new Array(32)
tip[0] = ""
tip[1] = "We cannot incorporate a company if its name includes sensitive words or expressions (click on the link to see them).  If you want one in your name, we recommend that you incorporate with a different name, and seek permission to change it later."
tip[2] = "This dictates how many shares the company is allowed to issue.  It does not have to issue all of them.  You can increase it later, though reducing it is very difficult.  By default, our companies have authorised capital of £1000."
tip[3] = "This is a nominal value, and sets the lower limit on what the company can sell each share for.  There is no upper limit.  We recommend £1."
tip[4] = "You can check whether your proposed company name has already been taken.  Please note we cannot guarantee names until your company is incorporated."
tip[5] = "The law says that every company must have a registered office in its country of registration (England and Wales are usually treated as the same country, but Scotland is not).  This does not have to be the same as the trading address.  We can provide this service if necessary."
tip[6] = "For details of our Registered Office Service, click here (opens new window)."
tip[7] = "This must be a real address.  Companies House will not accept PO Boxes."
tip[8] = "The company’s registered office must be in its country of registration."
tip[9] = "For details of our Company Secretary Service, click here (opens new window)."
tip[10] = "For details of our Nominee Shareholder Service, click here (opens new window)."
tip[11] = "For details of our Virtual Office Service, click here (opens new window)."
tip[12] = "By default, we give the Chairman a casting vote if there is deadlock.  Select this option to remove the casting vote."
tip[13] = "This option prevents directors from being voted off the board, by giving them enhanced voting rights."
tip[14] = "For details of our custom made logos, click here (opens new window).  If you select this option, we will ask you for details later."
tip[15] = "For details of our stationery pack, click here (opens new window).  If you select this option, we will ask you for details later."
tip[16] = "Click to see the total price, including your company formation and all selected options."
tip[17] = "There must be at least one director."
tip[18] = "This must be a real residential address.  Companies House will not accept PO Boxes."
tip[19] = "UK companies do not have to have a UK-resident director."
tip[20] = "We need this personal information to identify you.  It works instead of your signature, and means you don’t have to fill in paper forms."
tip[21] = "If this person is only a shareholder, and not a director, you can leave it blank."
tip[22] = "You do not need to include a directorship if <br>- you have not been a director for more than 5 years, or <br>- the company has not traded in the last 5 years."
tip[23] = "If there are no more directors, click “Skip” to go to the next set of details you need to enter."
tip[24] = "There must be at least one shareholder."
tip[25] = "This must be a real residential address – no PO Boxes please."
tip[26] = "UK companies do not have to have a UK-resident shareholder."
tip[27] = "Please enter how many shares this shareholder will have.  By default, we will issue just 1 to each shareholder, as this provides the minimum liability to the company."
tip[28] = "All companies must have a company secretary.  If there is only one director, that person cannot also be the company secretary.  We can provide this service if necessary."
tip[29] = "Select this option if you want us to act as company secretary.  For details, click here (opens new window)."
tip[30] = "Select this option if you want us to act as company secretary and the company will not be trading yet.  For details, click here (opens new window)."
tip[31] = "UK companies do not have to have a UK-resident company secretary."
tip[32] = "We need this personal information to identify you.  It works instead of your signature, and means you don’t have to fill in paper forms.  If this person is only a shareholder, and not a director, you can leave it blank."
tip[33] = "You do not need to include a directorship if <br>- you have not been a director for more than 5 years, or <br>- the company has not traded in the last 5 years.<br>If this person is only a shareholder, and not a director, you can leave it blank."
// End of text of tooltips


var offsetfromcursorX=12 //Customize x offset of tooltip
var offsetfromcursorY=10 //Customize y offset of tooltip

var offsetdivfrompointerX=10 //Customize x offset of tooltip DIV relative to pointer image
var offsetdivfrompointerY=14 //Customize y offset of tooltip DIV relative to pointer image. Tip: Set it to (height_of_pointer_image-1).

document.write('<div id="dhtmltooltip"></div>') //write out tooltip DIV
document.write('<img id="dhtmlpointer" src="/images/arrow2.gif">') //write out pointer image

var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""

var pointerobj=document.all? document.all["dhtmlpointer"] : document.getElementById? document.getElementById("dhtmlpointer") : ""

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thewidth, thecolor){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var nondefaultpos=false
var curX=(ns6)?e.pageX : event.x+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.y+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var winwidth=ie&&!window.opera? ietruebody().clientWidth : window.innerWidth-20
var winheight=ie&&!window.opera? ietruebody().clientHeight : window.innerHeight-20

var rightedge=ie&&!window.opera? winwidth-event.clientX-offsetfromcursorX : winwidth-e.clientX-offsetfromcursorX
var bottomedge=ie&&!window.opera? winheight-event.clientY-offsetfromcursorY : winheight-e.clientY-offsetfromcursorY

var leftedge=(offsetfromcursorX<0)? offsetfromcursorX*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth){
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=curX-tipobj.offsetWidth+"px"
nondefaultpos=true
}
else if (curX<leftedge)
tipobj.style.left="5px"
else{
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetfromcursorX-offsetdivfrompointerX+"px"
pointerobj.style.left=curX+offsetfromcursorX+"px"
}

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight){
tipobj.style.top=curY-tipobj.offsetHeight-offsetfromcursorY+"px"
nondefaultpos=true
}
else{
tipobj.style.top=curY+offsetfromcursorY+offsetdivfrompointerY+"px"
pointerobj.style.top=curY+offsetfromcursorY+"px"
}
tipobj.style.visibility="visible"
if (!nondefaultpos)
pointerobj.style.visibility="visible"
else
pointerobj.style.visibility="hidden"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
pointerobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

document.onmousemove=positiontip

-->
