	function build() {
	var myWin = window.open("http://www.imperialusa.com/collections/builder.asp","picture","status=no,scrolbars,width=800,height=540,resize=noresize,")
}
function reset() {
document.repair.first.value="";
document.repair.last.value="";
document.repair.email.value="";
document.repair.area.value="";
document.repair.number.value="";
document.repair.message.value="";
document.repair.about.value="";
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function dw_Rotator(id, speed, path, bTrans, bMouse, bRand) {
    var imgObj = document.getElementById(id); 
    if (!imgObj) {
        imgObj = document.images[id];
        if (!imgObj) return;
        imgObj.id = id;
    }
    this.id = id; this.speed = speed || 4500;
	this.path = path || "";  this.bRand = bRand;
    this.ctr = 0; this.timer = 0; this.imgs = []; 
    this._setupLink(imgObj, bMouse);
    this.bTrans = bTrans && typeof imgObj.filters != 'undefined';
    var index = dw_Rotator.col.length; dw_Rotator.col[index] = this;
    this.animString = "dw_Rotator.col[" + index + "]";
}

dw_Rotator.col = [];
dw_Rotator.resumeDelay = 400;

dw_Rotator.prototype._setupLink = function(imgObj, bMouse) { 
    if ( imgObj.parentNode && imgObj.parentNode.tagName.toLowerCase() == 'a' ) {
        var parentLink = this.parentLink = imgObj.parentNode;
        if (bMouse) {
            dw_Event.add(parentLink, 'mouseover', dw_Rotator.pause);
            dw_Event.add(parentLink, 'mouseout', dw_Rotator.resume);
        }
    }
}


dw_Rotator.getInstanceById = function(id) {
    var len = dw_Rotator.col.length, obj;
    for (var i=0; i<len; i++) {
        obj = dw_Rotator.col[i];
        if (obj.id && obj.id == id ) {
            return obj;
        }
    }
    return null;
}

dw_Rotator.prototype.on_rotate = function() {}

dw_Rotator.prototype.addImages = function() {
    var img;
    for (var i=0; arguments[i]; i++) {
        img = new Image();
        img.src = this.path + arguments[i];
        this.imgs[this.imgs.length] = img;
    }
}

dw_Rotator.prototype.rotate = function() {
    clearTimeout(this.timer); this.timer = null;
    var imgObj = document.getElementById(this.id);
    if ( this.bRand ) {
        this.setRandomCtr();
    } else {
        if (this.ctr < this.imgs.length-1) this.ctr++;
        else this.ctr = 0;
    }
    if ( this.bTrans ) {
        this.doImageTrans(imgObj);
    } else {
        imgObj.src = this.imgs[this.ctr].src;
    }
    this.swapAlt(imgObj); this.prepAction(); this.on_rotate();
    this.timer = setTimeout( this.animString + ".rotate()", this.speed);   
}

dw_Rotator.prototype.setRandomCtr = function() {
    var i = 0, ctr;
    do { 
        ctr = Math.floor( Math.random() * this.imgs.length );
        i++; 
    } while ( ctr == this.ctr && i < 6 )
	this.ctr = ctr;
}

dw_Rotator.prototype.doImageTrans = function(imgObj) {
    imgObj.style.filter = 'blendTrans(duration=1)';
    if (imgObj.filters.blendTrans) imgObj.filters.blendTrans.Apply();
    imgObj.src = this.imgs[this.ctr].src;
    imgObj.filters.blendTrans.Play(); 
}

dw_Rotator.prototype.swapAlt = function(imgObj) {
    if ( !imgObj.setAttribute ) return;
    if ( this.alt && this.alt[this.ctr] ) {
        imgObj.setAttribute('alt', this.alt[this.ctr]);
    }
    if ( this.title && this.title[this.ctr] ) {
        imgObj.setAttribute('title', this.title[this.ctr]);
    }
}

dw_Rotator.prototype.prepAction = function() {
    if ( this.actions && this.parentLink && this.actions[this.ctr] ) {
        if ( typeof this.actions[this.ctr] == 'string' ) {
            this.parentLink.href = this.actions[this.ctr];
        } else if ( typeof this.actions[this.ctr] == 'function' ) {
            var id = this.id;
            this.parentLink.href = "javascript: void " + this.actions[this.ctr] + "('" + id + "')";
        } 
    }
}

dw_Rotator.prototype.showCaption = function() {
    if ( this.captions && this.captionId ) {
        var el = document.getElementById( this.captionId );
        if ( el && this.captions[this.ctr] ) {
            el.innerHTML = this.captions[this.ctr];
        }
    }
}


dw_Rotator.start = function() {
    var len = dw_Rotator.col.length, obj;
    for (var i=0; i<len; i++) {
        obj = dw_Rotator.col[i];
        if (obj && obj.id ) 
            obj.timer = setTimeout( obj.animString + ".rotate()", obj.speed);
    }
}


dw_Rotator.stop = function() {
    var len = dw_Rotator.col.length, obj;
    for (var i=0; i<len; i++) {
        obj = dw_Rotator.col[i];
        if (obj ) { clearTimeout(obj.timer); obj.timer = null; }
    }
}


dw_Rotator.pause = function(e) {	
    e = dw_Event.DOMit(e);
    var id = e.target.id;
    var obj = dw_Rotator.getInstanceById(id);
    if ( obj ) { clearTimeout( obj.timer ); obj.timer = null; }
}

dw_Rotator.resume = function(e) {
    e = dw_Event.DOMit(e);
    var id = e.target.id;
    var obj = dw_Rotator.getInstanceById(id);
    if ( obj && obj.id ) {
        obj.timer = setTimeout( obj.animString + ".rotate()", dw_Rotator.resumeDelay );
    }
}


dw_Rotator.setup = function () {
    if (!document.getElementById) return;
    var i, j, rObj, r, imgAr, len;
    for (i=0; arguments[i]; i++) {
        rObj = arguments[i];
        r = new dw_Rotator(rObj.id, rObj.speed, rObj.path, rObj.bTrans, rObj.bMouse, rObj.bRand);
        try {
            imgAr = rObj.images; len = imgAr.length;
            for (j=0; j<len; j++) { r.addImages( imgAr[j] ); }
            if( rObj.num ) r.ctr = rObj.num;
            if ( rObj.actions && rObj.actions.length == len ) {
                r.addProp('actions', rObj.actions);
            }
            if ( rObj.alt && rObj.alt.length == len ) {
                r.addProp('alt', rObj.alt);
            }
            if ( rObj.title && rObj.title.length == len ) {
                r.addProp('title', rObj.title);
            }
            if ( rObj.captions ) {
                r.addProp('captions', rObj.captions);
                r.captionId = rObj.captionId;
                dw_Rotator.addRotateEvent(r, function (id) { 
                    return function() { dw_Rotator.getInstanceById(id).showCaption(); }
                }(rObj.id) );
            }
        } catch (e) { 

        }
    }
    dw_Rotator.start();
}


dw_Rotator.addRotateEvent = function( r, fp ) {
    var old_on_rotate = r.on_rotate;
    r.on_rotate = function() { old_on_rotate(); fp(); }
}


dw_Rotator.prototype.addProp = function(prop, ar) {
    if ( !this[prop] ) {
        this[prop] = [];
    }
    var len = ar.length; 
    for (var i=0; i < len; i++) {
        this[prop][ this[prop].length ] = ar[i]; 
    }
}

var dw_Event = {
  
    add: function(obj, etype, fp, cap) {
        cap = cap || false;
        if (obj.addEventListener) obj.addEventListener(etype, fp, cap);
        else if (obj.attachEvent) obj.attachEvent("on" + etype, fp);
    }, 

    remove: function(obj, etype, fp, cap) {
        cap = cap || false;
        if (obj.removeEventListener) obj.removeEventListener(etype, fp, cap);
        else if (obj.detachEvent) obj.detachEvent("on" + etype, fp);
    }, 
    
    DOMit: function(e) { 
        e = e? e: window.event;
        if (!e.target) e.target = e.srcElement;
        if (!e.preventDefault) e.preventDefault = function () { e.returnValue = false; return false; }
        if (!e.stopPropagation) e.stopPropagation = function () { e.cancelBubble = true; }
        return e;
    },
    
    getTarget: function(e) {
        e = dw_Event.DOMit(e); var tgt = e.target; 
        if (tgt.nodeType != 1) tgt = tgt.parentNode;
        return tgt;
    }
    
}

function addLoadEvent(func) {
    var oldQueue = window.onload? window.onload: function() {};
    window.onload = function() {
        oldQueue();
        func();
    }
}

var rotate = {
    path:   'images/',
    id:   'rotate1',
    speed:  3000, // default 4500
    images: ["rotate10.jpg", "rotate11.jpg", "rotate12.jpg", "rotate4.jpg", "rotate5.jpg", "rotate7.jpg", "rotate8.jpg", "rotate9.jpg"],
    bTrans: true // ie win filter
}
 
function initRotator() {
    dw_Rotator.setup(rotate);
}
 
dw_Event.add( window, 'load', initRotator);
<!-- Open DLT -->
function openBalboa()  {
 	var myWin = window.open("iframes/balboa.html","picture","status=no,scrollbars=no, width=650,height=500,resize=noresize")
	}
function openChamberlin() {
	var myWin = window.open("iframes/chamberlin.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openChurchhill() {
	var myWin = window.open("iframes/churchhill.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openColumbia() {
	var myWin = window.open("iframes/columbia.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openDenver() {
	var myWin = window.open("iframes/denver.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openDiana() {
	var myWin = window.open("iframes/diana.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openErie() {
	var myWin = window.open("iframes/erie.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openFlorence() {
	var myWin = window.open("iframes/florence.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openGulf() {
	var myWin = window.open("iframes/gulf.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openHawaii() {
	var myWin = window.open("iframes/hawaii.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openHeritage() {
	var myWin = window.open("iframes/heritage.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openHighlander() {
	var myWin = window.open("iframes/highlander.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openHouston2() {
	var myWin = window.open("iframes/houston.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openJasmine() {
	var myWin = window.open("iframes/jasmine.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openKing() {
	var myWin = window.open("iframes/king.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openLagrand() {
	var myWin = window.open("iframes/lagrand.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openLido() {
	var myWin = window.open("iframes/lido.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openMajestic() {
	var myWin = window.open("iframes/majestic.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openMontecarlo() {
	var myWin = window.open("iframes/montecarlo.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openMonterey() {
	var myWin = window.open("iframes/monterey.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openNewport2() {
	var myWin = window.open("iframes/newport.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openPhoenix() {
	var myWin = window.open("iframes/phoenix.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openRose() {
	var myWin = window.open("iframes/rose.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openSiena() {
	var myWin = window.open("iframes/siena.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openVittoria() {
	var myWin = window.open("iframes/vittoria.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
function openWashington2() {
	var myWin = window.open("iframes/washington.html","picture","status=no,scrolbars=no, width=650,height=500, resize=noresize")
	}
<!-- Open CL Bailey and Fischer -->
function openAddison()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/Addison/Addison.cfm","picture","status=no,scrollbars=no,width=700,height=575,resize=noresize")
	}

function openAlicante()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/Alicante05/Alicante.html","picture","status=no,scrollbars=no,width=794,height=642, resize=noresize")
	}
function openAzores()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/azores.cfm","picture","status=no,scrollbars=no,width=700,height=600, resize=noresize")
	}
function openBlackKnight()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/blackKnight.cfm","picture","status=no,scrollbars=no,width=774,height=650, resize=noresize")
	}
function openCarlisle()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/carlisle-2004.cfm","picture","status=no,scrollbars=no,width=774,height=600, resize=noresize")
	}
function openBiltmore()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/Biltmore.cfm","picture","status=no,scrollbars=no,width=774,height=575, resize=noresize")
	}
function openDuke()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/Duke05/Duke.html","picture","status=no,scrollbars=no,width=788,height=642, resize=noresize")
	}	
function openDutchess()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/Dutches05/Dutches.html","picture","status=no,scrollbars=no,width=794,height=642, resize=noresize")
	}
function openEmpire()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/empire.cfm","picture","status=no,scrollbars=no,width=774,height=600, resize=noresize")
	}
function openFinishes()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/finishes.cfm","picture","status=no,scrollbars=no,width=774,height=600, resize=noresize")
	}
function openForsyth()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/forsyth.cfm","picture","status=no,scrollbars=no,width=700,height=550, resize=noresize")
	}
function openGuinevere()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/guinevere.cfm","picture","status=no,scrollbars=no,width=700,height=550, resize=noresize")
	}
function openLegsandfinishes()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/legsandfinishes505.cfm","picture","status=no,scrollbars=no,width=774,height=480")
	}
	function openAvailableFinishes()  {
 	var myWin = window.open("http://www.clbailey.com/AvailableFinishes.cfm","picture","status=no,scrollbars=no,width=760,height=600, resize=noresize")
	}
function openLorient()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/Lorient05/Lorient.html","picture","status=no,scrollbars=no,width=794,height=642, resize=noresize")
	}	
function openMarseiles() {
	var myWin = window.open("http://www.clbailey.com/PoolTables/Marseilles-2004.cfm","pictuer","status=no,scrollbars=no,width=784,height=575, resize=noresize")
	}	
function openRegent()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/regent.cfm","picture","status=no,scrollbars=no,width=774,height=600, resize=noresize")
	}
function openRenegade()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/renegade.cfm","picture","status=no,scrollbars=no,width=700,height=550, resize=noresize")
	}
function openSussex()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/Sussex05/Sussex.html","picture","status=no,scrollbars=no,width=788,height=642, resize=noresize")
	}
function openVenezia()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/venezia.cfm","picture","status=no,scrollbars=no,width=700,height=545, resize=noresize")
	}
function openVerona()  {
 	var myWin = window.open("http://www.clbailey.com/PoolTables/verona.cfm","picture","status=no,scrollbars=no,width=774,height=600, resize=noresize")
	}
function openBedford() {
	var myWin = window.open("http://www.clbailey.com/PoolTables/bedford/bedford.cfm","picture","status=no,scrollbars=no,width=774,height=640, resize=noresize")
	}
function openSorbonne() {
	var myWin = window.open("http://www.clbailey.com/PoolTables/Sorbonne/Sorbonne.html","picture","status=no,scrolbars=no,width=774,height=642, resize=noresize")
	}
function openPatriarch() {
	var myWin = window.open("http://www.clbailey.com/PoolTables/Patriarch/Patriarch.html","picture","status=no,scrolbars=no,width=774,height=600, resize=noresize")
	}
	function openModena() {
	var myWin = window.open("http://www.clbailey.com/PoolTables/Modena/Modena.html","picture","status=no,scrolbars=no,width=784,height=642, resize=noresize")
	}
	function openStratford() {
	var myWin = window.open("http://www.clbailey.com/PoolTables/Stratford/Stratford.html","picture","status=no,scrolbars=no,width=784,height=642, resize=noresize")
}	
<!-- Imperial Popups -->
	function openAugustine() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/augustine.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openBlackPearl() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/blackpearl.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openChardonnay() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/chardonnay.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openEliminator() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/eliminator.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openFranklin() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/franklin.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openGrant() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/grant.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openHamilton() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/hamilton.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openJackson() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/jackson.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openLincoln() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/lincoln.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openMonroe() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/monroe.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openNantucket() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/nantucket.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openNewport() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/newport.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openSantaBarbara() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/santabarbara.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openShadow() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/shadow.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openSpectrum() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/spectrum.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openTaylor() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/taylor.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
	function openWashington() {
	var myWin = window.open("../../images/sitewide/Tables/Imperial/big/washington.jpg","picture","status=no,scrolbars=no,width=417,height=569, resize=noresize")
}
<!-- World of Leisure Popups -->
	function openAvalon() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/avalon.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
function openBelair() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/belair.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openChallenger() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/challenger.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openCimmaron() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/cimmaron.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openDavenport() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/davenport.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openDover() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/dover.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openFairfield() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/fairfield.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openFifthavenue() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/fifthavenue.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openHampton() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/hampton.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openHouston() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/houston.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openKnight() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/knight.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openMadison() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/madison.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openManhattan() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/manhattan.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openMeridian() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/meridian.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openMidtown() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/midtown.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openMontreal() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/montreal.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openOakwinchester() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/oakwinchester.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openOxford() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/oxford.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openRegent() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/regent.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openRemington() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/remington.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openRichland() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/richland.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openSanantonio() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/sanantonio.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openSeabreeze() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/seabreeze.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openSilverstreak() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/silverstreak.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openSouthlake() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/southlake.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openTrienna() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/trienna.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openWellington() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/wellington.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openWinchester() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/winchester.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
	function openWinslow() {
	var myWin = window.open("../../images/sitewide/Tables/WOL/big/winslow.jpg","picture","status=no,scrolbars=no,width=367,height=500, resize=noresize")
}
<!-- Champion Shuffleboard Popups -->
	function openMadison() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championmadison.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openCapri() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championcapri.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openVintage() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championvintchar.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openGrandLTD() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championgrandchampltd.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openGrand() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championgrandchamp.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openChampionship() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championchamp.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openGentry() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championgentry.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openQualifier() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championqualifier.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openBumper() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championbumper.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openVenetian() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championvenetian.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openBullet() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/championbullet.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}
	function openHudson() {
	var myWin = window.open("../../images/sitewide/Shuffleboard/popouts/grandhudson.jpg","picture","status=no,scrolbars=no,width=500,height=550, resize=noresize")
}