﻿function loadHomePage()
{
document.location = 'default.aspx';
}

function loadWeddingsPage()
{
document.location = 'Weddings.aspx';
}

function loadEventsPage()
{
document.location = 'PartiesAndEvents.aspx';
}

function loadOurWinePage()
{
document.location = 'OurWine.aspx';
}

function loadAboutUsPage() 
{                   
document.location = 'AboutUs.aspx';
}

function OpenCalendar()
{
window.open('Calendar.htm', 'newWindow','height=650, width=850, resizable=false, status=false, menubar=false');
}

function OpenVideo()
{
window.open('Video.htm', 'newWindow','height=350, width=450, resizable=false, status=false, menubar=false');
}

function OpenGallery()
{
window.open('Photos/Gallery.htm', 'newWindow','height=500, width=1000, resizable=false, status=false, menubar=false');
}

function loadDirectionsAndContactPage()
{
document.location = 'DirectionsAndContact.aspx';
}

function DownloadWeddingAgreement()
{
var url='Downloads/Wedding_Rental_Agreement.pdf';    
window.open(url,'SaveAs'); 
}

function DownloadEventsAgreement()
{
var url='Downloads/Rental_Agreement_Parties.pdf';    
window.open(url,'SaveAs'); 
}

