function Deals()
{
   window.open('http://www.weekend.co.il/customerspecialoffer.aspx?customerID=2373','Deals','width=540, height=430, resizable=no, scrollbars=yes, top=50, left=50');
}
function Vacancy()
{
   window.open('http://www.weekend.co.il/CustomerRoomVacancyCalendar.aspx?lang=HE&customerID=2373','Vacancy','width=540, height=430, resizable=no, scrollbars=yes, top=50, left=50');
}
function Article()
{
   window.open('article.html','Article','width=540, height=430, resizable=no, scrollbars=yes, top=5, left=5');
}
function Utube1()
{
   window.open('utube1.html','Movie','width=450, height=360, resizable=no, scrollbars=yes, top=5, left=5');
}
function Utube2()
{
   window.open('utube2.html','Movie','width=450, height=360, resizable=no, scrollbars=yes, top=5, left=5');
}
function Utube3()
{
   window.open('utube3.html','Movie','width=450, height=360, resizable=no, scrollbars=yes, top=5, left=5');
}
function Utube4()
{
   window.open('utube4.html','Movie','width=450, height=360, resizable=no, scrollbars=yes, top=5, left=5');
}
function Utube5()
{
   window.open('utube5.html','Movie','width=450, height=360, resizable=no, scrollbars=yes, top=5, left=5');
}
function openMap()
{
   window.open('mapprint.html','Map','width=618, height=820, resizable=yes, scrollbars=yes, top=5, left=5');
}
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)
    }
}
function openVideoWindow(customerID) {
				openWin1 = window.open("http://www.weekend.co.il/Video/customerVideo.aspx?customerID="+ customerID +"&lang=HE", 'openCustVideo', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,top=100,left=100,width=340 height=548');
				openWin1.focus();
}