<!--
//Script created by Jim Young (www.requestcode.com)
//Submitted to JavaScript Kit (http://javascriptkit.com)
//Visit http://javascriptkit.com for this script

//Set the tool tip message you want for each link here.
     var tip=new Array
           tip[0]="images and content copyright &copy; 2003 <br> athienou archaeological project.<br><br> layout and design by a. ambrosini.<br> comments and queries to aap @ darkreaper.com"


     function showtip(current,e,num)
        {
         if (document.layers) // Netscape 4.0+
            {
             theString="<DIV CLASS='ttip'>"+tip[num]+"</DIV>"
             document.tooltip.document.write(theString)
             document.tooltip.document.close()
             document.tooltip.left=e.pageX-10
             document.tooltip.top=e.pageY+15
             document.tooltip.visibility="show"
            }
         else
           {
            if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
              {
               elm=document.getElementById("tooltip")
               elml=current
               elm.innerHTML=tip[num]
               elm.style.height=elml.style.height
               elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight-50)
               elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+10)
               elm.style.visibility = "visible"
              }
           }
        }
function hidetip(){
if (document.layers) // Netscape 4.0+
   {
    document.tooltip.visibility="hidden"
   }
else
  {
   if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
     {
      elm.style.visibility="hidden"
     }
  } 
}

function open_vr(name)
{
    var PopTart;
    HelpWin  = window.open(
        name,
        'PoptartWindow',
        'width=780,height=400'
    );
    PopTart.focus();

}




function open_win(name)
{

    var PopWin;
    HelpWin  = window.open(
        name,
        'PopupWindow',
        'width=600,height=550'
    );
    PopWin.focus();
}

-->