// JavaScript Document

Browser="";
if (navigator.appName.indexOf("Netscape")!=-1)
{
if (document.layers)
Browser="NS4"
else
Browser="NS6"
}
if (document.all)
Browser="IE";

txttabkopf="<table border='0' cellpadding='0' cellspacing='0' class='tooltipkasten' bgcolor='#FFFFff' bordercolor='#000000'><tr><td>"
txttabfuss="</td></tr></table>"

Texte=new Array();
Texte[0]="The registration Number is..."
Texte[1]="The registration Number is..."
Texte[2]="The objective explains the direction you want to take your career. You should state here your aims for the future as far as your work is concerned."
Texte[3]="A personal profile should give information about your professional background."
Texte[4]="What's yor preferred..."
Texte[5]="General Social Care Council <br>www.gscc.org.uk"
Texte[6]="Nursing & Midwifery Council<br>www.nmc-uk.org"
Texte[7]="linguistic proficiency = Sprachkenntnisse"
Texte[8]="www.toefl.org"
Texte[9]="www.toefl.org/tse/tseindx.html"
Texte[10]="www.ielts.org"
Texte[11]="www.toefl.org"
Texte[12]="to nurture = to foster, bring up, to care for so./sth."
Texte[13]="enter score"
Texte[14]="accountability = responsibility"
Texte[15]="Jugendliche"
Texte[16]="Drogenmissbrauch"
Texte[17]="Elderly"
Texte[18]="Wahrnehmungsst&ouml;rungen"
Texte[19]="a document that specifies what experience, knowledge and skills the employer is looking for"
Texte[20]="GSCC = General Social Care Council"
Texte[21]="HPC = Health Professional Council"
Texte[22]="RICS = Royal Institution of Chartered Surveyors"
Texte[23]="ARB = Architect's Registration Board"


if(Browser=="NS4"||Browser=="NS6")
{
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=settool;
}
function settool(e)
{
x=e.pageX;
y=e.pageY;
if(Browser=="NS4")
{
document.tooltip.top=y-20;
document.tooltip.left=x+5;
}
else if(Browser=="NS6")
{
document.getElementById("tooltip").style.top=y-20;
document.getElementById("tooltip").style.left=x+5;
}
}


function hidetool()
{
if (Browser=="NS4")
document.tooltip.visibility="hide";
else if (Browser=="IE")
document.all.tooltip.style.visibility="hidden"
else if(Browser=="NS6")
document.getElementById("tooltip").style.visibility="hidden"
}

function showtool(nr)
{
if (Browser=="NS4")
{
document.tooltip.document.open();
document.tooltip.document.write(txttabkopf+Texte[nr]+txttabfuss);
document.tooltip.document.close()
document.tooltip.visibility="show"
}
else if (Browser=="IE")
{
document.all.tooltip.innerHTML=txttabkopf+Texte[nr]+txttabfuss
x =document.body.scrollLeft+event.clientX;
y =document.body.scrollTop+event.clientY;
document.all.tooltip.style.top=y-20;
document.all.tooltip.style.left=x+5;
document.all.tooltip.style.visibility="visible"
}
else if (Browser=="NS6")
{
document.getElementById("tooltip").innerHTML=txttabkopf+Texte[nr]+txttabfuss

document.getElementById("tooltip").style.visibility="visible"
}
}
