﻿
function openWhatsThis() {
    $("#divWhatsThis").dialog('open');
}
$(document).ready(
    function() {        
        $("#divWhatsThis").dialog({
            bgiframe: true,
            autoOpen: false,
            modal: true,
            position: "center"
        });
    });
