function Deals()
{
   window.open('http://www.weekend.co.il/customerspecialoffer.aspx?customerID=21506','Deals','width=540, height=430, resizable=no, scrollbars=yes, top=50, left=50');
}
function Hagrala()
{
   window.open('hagrala.html','hagrala','width=540, height=430, resizable=no, scrollbars=yes, top=100, left=100');
}
function Vacancy()
{
   window.open('http://www.weekend.co.il/CustomerRoomVacancyCalendar.aspx?lang=HE&customerID=21506','Vacancy','width=540, height=430, resizable=no, scrollbars=yes, top=50, left=50');
}
function openMapWindow()
{
   var address = "http://www.emap.co.il/?client=weekend&action=match_address&city=יערה";
   address += "&comment0=צימר מערות היכלי בראשית"
       window.open(address, "mapPage", "left=0, top=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=750,height=600",true);
}
// scrolling code
var scrolling = false;
function scrollThumbDown()
{
    scrolling = true;
    scrollDown()
}

function stopScrolling()
{
    scrolling = false;
}

function scrollDown()
{
    var thumbScroll = document.getElementById("thumbScroll");
    if (thumbScroll != null )
    {
        var X = thumbScroll.scrollTop;
        thumbScroll.scrollTop = X + 5;
    }
  
    if (scrolling) 
    {
        setTimeout("scrollDown()",100)
    }
}

function scrollThumbUp()
{
    scrolling = true;
    scrollUp();
}

function scrollUp()
{
    var thumbScroll = document.getElementById("thumbScroll");
    if (thumbScroll != null )
    {
        var X = thumbScroll.scrollTop;
        thumbScroll.scrollTop = X - 8;
    }

    if (scrolling) 
    {
        setTimeout("scrollUp()",100)
    }
}

