﻿// JScript File

<!--

var myRef;

function OpenVenueSearch(url) {

    var left = (screen.width-718) /2;
    var top = (screen.height-600) /2;

    myRef = window.open('venueSearch.aspx','myVenueBrowser','left=' + left + ',top=' + top + ',width=718,scrollbars=1,height=400,toolbar=0,resizable=0,directories=0,menubar=0');

    if (!myRef) {
    
        alert("The venue search did not open, please check you popup blocker and try again.");
    
    }

}

//-->