<!--//

var isNav = (navigator.appName.indexOf("Netscape") != -1);
var x,y,a,b;
var offsetX = 0;
// = -265;
var offsetY = 0;
// = -60;
var is_displayed = 0;
var texty = new Array();

texty[0] = '<b>Our private dental practice</b><br><br><i>We know how one might feel when deciding to visit a dentist. It might be fear of pain, procrastination or respect for the doctor. We are able to prevent pain. We also believe that our practice provides a different environment that you remember from the past. Would not it be nice to see a dentist and not feel pain and fear?</i>';
texty[1] = '<b>Our approach</b><br><br><i>You certainly remember your past visits to the dentist.  When visiting us, you will learn which dental approaches are the best, which materials we use, and, of course, our best recommendation for you. You can ask us about anything which allows you to make an informed decision.</i>';
texty[2] = '<b>Time</b><br><br><i>Your time matters to us. We are ready to make an appointment at a time convenient for you.</i>';
texty[3] = '<b>Guarantee</b><br><br><i>People can forget how quickly you have done your work but will remember how well you have done it.</i>';
texty[4] = '<b>MUDr. Miroslava Ducková</b><br><br><b>1988</b><br><i>Medical School of Comenius University in Bratislava</i><br><br><b>1990</b><br><i>Residency with Michal Cierny, DMD, Zurich, Switzerland</i><br><br><b>1991</b><br><i>1st compulsory exam in dentistry</i><br><br><b>1991–3</b><br><i>Residency with Peter Paul, DMD, Vienna, Austria</i><br><br><b>1995–6</b><br><i>Residency with Michael Hrivnak, DMD, Bernburg, Germany</i><br><br><b>1998</b><br><i>Opening of the first private dental<br>practice in Bratislava</i><br><br><b>2001–2</b><br><i>Attending the French homeopathic<br>school BOIRON</i>';
texty[5] = '<b>MUDr. Aurel Ducko</b><br><br><b>1988</b><br><i>Medical School of Comenius University in Bratislava</i><br><br><b>1990</b><br><i>Residency with Michal Cierny, DMD, Zurich, Switzerland</i><br><br><b>1991</b><br><i>1st compulsory exam in dentistry</i><br><br><b>1991–2</b><br><i>Residency with Peter Paul, DMD, Vienna, Austria</i><br><br><b>1992–01</b><br><i>Wiener Gebietskrankenkasse, Vienna, Austria</i>';
texty[6] = '<b>Ľubica Hlinická</b><br><br><b>2004</b><br><i>Nursery school in Bratislava<br>nurse</i>';
texty[7] = '<b>Attended International Conferences and Congresses:</b><br><br><b>1997</b> <i>Implantology by FRIATEC, Germany</i><br><br><b>1997</b> <i>Congress – Die Alternative zum freien Schleimhauttransplantat, Vienna, Austria</i><br><br><b>1997</b> <i>Conference – Der schwierige Oberkiefer, Vienna, Austria</i><br><br><b>2000</b> <i>Implantology by TIOLOX, Germany</i><br><br><b>2000</b> <i>Adhesive Posterior Restorative, Switzerland</i><br><br><b>2000</b> <i>Advanced prosthodontics ESPE, Germany</i><br><br><b>2001</b> <i>Modern endodontics in everyday Practice: State-of-the-Art, Dentsply</i><br><br><b>2001</b> <i>Modern endodontics in everyday Practice, Dentsply</i>';

function popLayer(a,offX,offY)
{  
  offsetX = offX;
  offsetY = offY;
  desc  = '<table border="3" cellpadding="10" cellspacing="0" bordercolor="#189A9C" width="300" bgcolor="#FFFFFF">\n';
  desc += '  <tr>\n';
  desc += '    <td class="normal" width="100%">';
  desc += texty[a];
  desc += '</td>\n';
  desc += '  </tr>\n';
  desc += '</table>\n';

  if(isNav)
  {
    over = self.document.etswitch;
    over.document.write(desc);
    over.document.close();
    over.left = x+offsetX;
    over.top = y+offsetY;
    over.visibility = "show";    
  }else
  {
    over = self.etswitch.style;
    etswitch.innerHTML=desc;
    over.left = x+offsetX;
    over.top = y+offsetY;
    over.visibility = "visible";
  }  
  is_displayed = 1;
}

function hideLayer()
{
  if(isNav) over.visibility = "hide";
  else over.visibility = "hidden";
  is_displayed = 0;
}

function handlerMM(e)
{
  x = (isNav) ? e.pageX : event.x+self.document.body.scrollLeft;
  y = (isNav) ? e.pageY : event.y+self.document.body.scrollTop;
  if(is_displayed == 1)
  {		
		over.left = x+offsetX;
		over.top = y+offsetY;
  }
}

if(isNav) document.captureEvents(Event.MOUSEMOVE);

document.onmousemove = handlerMM;

//-->