function individual()
    {
    window.open("","individual","toolbar=no,width=780,height=350,screenX=20,screenY=20,left=20,top=20,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no");
    }
    
function detailview()
    {
    window.open("","detailview","toolbar=no,width=650,height=600,screenX=10,screenY=10,left=10,top=10,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no");
    }

function onMouseMenu()
{
    alert("Commercial or private use of the images and contents on this website is strict prohibited without my express written permission!");
    return false;
}
    if (parseInt(navigator.appVersion)>3)
        {
            document.oncontextmenu = onMouseMenu;
        }

function init()
{
    imagearray = new Array();
    imagedesc = new Array();
    
    imagearray[0] = new Image(360,240);
    imagearray[0].src = "slide/image_00.jpg";
    imagedesc[0] = "Bird perspective of Tolo: Photo from a postcard.";
    
    imagearray[1] = new Image(360,240);
    imagearray[1].src = "slide/image_01.jpg";
    imagedesc[1] = "Ready to fly at Munich...";
    
    imagearray[2] = new Image(360,240);
    imagearray[2].src = "slide/image_02.jpg";
    imagedesc[2] = "Our airplane: Airbus A 320.";
    
    imagearray[3] = new Image(360,240);
    imagearray[3].src = "slide/image_03.jpg";
    imagedesc[3] = "View of heaven in  a height of 10 thousand meters: WOW!";
    
    imagearray[4] = new Image(360,240);
    imagearray[4].src = "slide/image_04.jpg";
    imagedesc[4] = "The first day in Tolo: a unique sunrise...";
    
    imagearray[5] = new Image(360,240);
    imagearray[5].src = "slide/image_05.jpg";
    imagedesc[5] = "... and two hours later.";
    
    imagearray[6] = new Image(360,240);
    imagearray[6].src = "slide/image_06.jpg";
    imagedesc[6] = "Frontside of our hotel with the managers (John & George group).";
    
    imagearray[7] = new Image(360,240);
    imagearray[7].src = "slide/image_07.jpg";
    imagedesc[7] = "My first day in Tolo: waiting for good breakfast.";
    
    imagearray[8] = new Image(360,240);
    imagearray[8].src = "slide/image_08.jpg";
    imagedesc[8] = "Water temperature has approximately 25 degrees Celsius.";
    
    imagearray[9] = new Image(360,240);
    imagearray[9].src = "slide/image_09.jpg";
    imagedesc[9] = "Beach on Tolo: The double mountains on background...";
    
    imagearray[10] = new Image(360,240);
    imagearray[10].src = "slide/image_10.jpg";
    imagedesc[10] = "...are known as the \"Aphrodite's Bosom\".";
    
    imagearray[11] = new Image(360,240);
    imagearray[11].src = "slide/image_11.jpg";
    imagedesc[11] = "Why this mountains is called so? See yourself why...";
    
    imagearray[12] = new Image(360,240);
    imagearray[12].src = "slide/image_12.jpg";
    imagedesc[12] = "Outlook of Tolo from the hotel \"John and George\".";
    
    imagearray[13] = new Image(360,240);
    imagearray[13].src = "slide/image_13.jpg";
    imagedesc[13] = "Went with the ship \"Alkyonis\" to the greek islands...";
    
    imagearray[14] = new Image(360,240);
    imagearray[14].src = "slide/image_14.jpg";
    imagedesc[14] = "Nafplio, Porus, Spetses and Hydra.";
    
    imagearray[15] = new Image(360,240);
    imagearray[15].src = "slide/image_15.jpg";
    imagedesc[15] = "The known palmstreet at the greek island Nafplio.";
    
    imagearray[16] = new Image(360,240);
    imagearray[16].src = "slide/image_16.jpg";
    imagedesc[16] = "Active nightlife of the greek island \"Nafplio\".";
        
    imagearray[17] = new Image(360,240);
    imagearray[17].src = "slide/image_17.jpg";
    imagedesc[17] = "The next day in Tolo: Dinner at Niki's and Bob's Tavern.";
        
    imagearray[18] = new Image(360,240);
    imagearray[18].src = "slide/image_18.jpg";
    imagedesc[18] = "That's Niki: She really cooks very well. Is recommend very much.";
        
    imagearray[19] = new Image(360,240);
    imagearray[19].src = "slide/image_19.jpg";
    imagedesc[19] = "Active nightlife in Tolo: At day the village are in sleep mode.";
    
    pos = 0;
    text = document.getElementById("slidetext").firstChild;
    slider = document.getElementById("slideshow");
    slider.src = imagearray[pos].src;
}

function posup()
{
    pos--;
    if (pos == -1)
        {pos = imagearray.length -1;}
    slider.src = imagearray[pos].src;
    text.nodeValue = imagedesc[pos];
}

function posdown()
{
    pos++;
    if (pos == imagearray.length)
        {pos = 0;}
    slider.src = imagearray[pos].src;
    text.nodeValue = imagedesc[pos];
}