﻿$( document ).ready( function() {
    $( "a.popRules" ).click( function(e) {
        e.preventDefault();
        var urly = $( this ).attr( "href" );
        // console.log( urly );
        var popWin = window.open( urly, "popWin", "width=585,height=450,location=1,status=1,scrollbars=1" );
    } );
} );

/* Popup functions */
function openSpecialNote() {
    specialNotePopup = window.open('SpecialNotePop.aspx','specialNotePopup','width=465,height=200,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=200,top=200');
	if (window.focus) {specialNotePopup.focus()}
}


