﻿// JScript File

function Load(){
    image1 = new Image();
    image1.src = "Images/Header/Coast.jpg";

    image2 = new Image();
    image2.src = "Images/Header/Beach.jpg";

    image3 = new Image();
    image3.src = "Images/Header/Mountains.jpg";

    ChangePicture1();
}
    
function ChangePicture1(){
    document['HeaderPicture'].src = 'Images/Header/Coast.jpg';
    setTimeout('ChangePicture2();', 5000);
}
    
function ChangePicture2(){
    document['HeaderPicture'].src = 'Images/Header/Beach.jpg';
    setTimeout('ChangePicture3();', 5000);
}
    
function ChangePicture3(){
    document['HeaderPicture'].src = 'Images/Header/Mountains.jpg';
    setTimeout('ChangePicture1();', 5000);
}

function PayPal(){
    var height = window.screen.availHeight;
    var width = window.screen.availWidth;
    if (height < 736 || width < 800)
    {
        //takes height 736 width 822
        var top = (window.screen.availHeight - 735) / 2;
        var left = (window.screen.availWidth - 800) / 2;
        window.open("PayPal.aspx", 'mywindow', 'top=' + top + ', left=' + left + ', width=800,height=735,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes')    
    }
    else
    {
        var top = (window.screen.availHeight - 735) / 2;
        var left = (window.screen.availWidth - 800) / 2;
        window.open("PayPal.aspx", 'mywindow', 'top=' + top + ', left=' + left + ', width=800,height=735,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=yes')
    }
}
