﻿function GetYear()
{
    var date = new Date();
    return date.getFullYear();
}

var theImages = new Array();
theImages[0] = 'images/photo-headerimage-about.jpg'
theImages[1] = 'images/photo-headerimage-applause.jpg'
theImages[2] = 'images/photo-headerimage-classic.jpg'
theImages[3] = 'images/photo-headerimage-contact.jpg'
theImages[4] = 'images/photo-headerimage-deluxe.jpg'
theImages[5] = 'images/photo-headerimage-exquisite.jpg'
theImages[6] = 'images/photo-headerimage-extras.jpg'
theImages[7] = 'images/photo-headerimage-faq.jpg'
theImages[8] = 'images/photo-headerimage-gallery.jpg'
theImages[9] = 'images/photo-headerimage-home.jpg'
theImages[10] = 'images/photo-headerimage-services.jpg'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++)
{
    preBuffer[i] = new Image()
    preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random() * (p - 1));
function showImage()
{
    document.write('<img src="' + theImages[whichImage] + '">');
}

function popupMap(URL)
{
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=1000,height=480,left = 440,top = 225');");
}
