
$(document).ready(function() {  

      $('#dialog-v1').dialog({
                modal: false,
                autoOpen: false,
                resizable: true,
                width: 400,
                height: 375,
                show: 'clip',
                overlay: {
                opacity: 0.9,
                background: '#000'
	    	}
        }); 

    $('a[name=modal]').click(function(e) {

	    if ($.browser.msie && $.browser.version.substr(0,1)<8) 
	    {
		    window.open('http://sdfcu.webmache.com/Locator', '', 'left=100,top=100,width=400,height=375,toolbar=0,resizable=0');
	    }
	    else
	    {
            	$('#dialog-v1').dialog("open");
	        $('#dialog-v1').attr("title", "Branch & ATM Locator");
	    }

    }); 

});


