﻿// JScript 文件

$().ready(function() {
  $('#divNext').jqm({overlay: 50, modal: true, trigger: false});
  $('#divnothing').jqm({overlay: 50, modal: true, trigger: false});
  $('#divSelect').jqm({overlay: 50, modal: true, trigger: false});
  
var str1=$('#ctl00_cph_txb1').attr("value");

switch (str1)
  {
    case "divNext":
        $('#divNext').jqmShow();
        break;
    case "divnothing":
        $('#divnothing').jqmShow();
        break;
    case "divSelect":
        $('#divSelect').jqmShow();
        break;
  }
  
});

function ShowSelectCancel()
{
target("divSelect").style.display = "none";
removeMask(21, true, 5);
}

function ShowNothingCancel()
{
target("divnothing").style.display = "none";
removeMask(21, true, 5);
}



