﻿ $(document).ready(function() {
    $(".lnk").mouseover(function(event){
        this.style.cursor='pointer';                        
    });
    $(".lnk").mouseout(function(event){
        this.style.cursor='';
    });    
});

function ShowPopup(page, name, options) {
    Window = window.open(page, name, options);
}


