openwindow.js
上传用户:lwb168
上传日期:2021-10-31
资源大小:722k
文件大小:14k
源码类别:

Email服务器

开发平台:

ASP/ASPX

  1. <script language="JavaScript">
  2. function windowOpener(loadpos,title)
  3. {      
  4.       window.open(loadpos,title,"resizable,scrollbars=no,dependent,status=yes,width=725,height=680");
  5. }
  6. function windowopen650(loadpos,title)
  7. {      
  8.       window.open(loadpos,title,"resizable,scrollbars=no,dependent,status=yes,width=650,height=500");
  9. }
  10. function windowopensmall(loadpos,title)
  11. {      
  12.       window.open(loadpos,title,"resizable,scrollbars=no,dependent,status=yes,width=400,height=300");
  13. }
  14. function windowopensmall1(loadpos,title)
  15. {      
  16.       window.open(loadpos,title,"resizable,scrollbars=no,dependent,status=yes,width=220,height=130");
  17. }
  18. var weekend = [0,6];
  19. var weekendColor = "#FFFFFF";
  20. var fontface = "Verdana";
  21. var fontsize = 2;
  22. var gNow = new Date();
  23. var ggWinCal;
  24. isNav = (navigator.appName.indexOf("Netscape") != -1) ? true : false;
  25. isIE = (navigator.appName.indexOf("Microsoft") != -1) ? true : false;
  26. Calendar.Months = ['一月', '二月', '三月', '四月', '五月', '六月',
  27. '七月', '八月', '九月', '十月', '十一月', '十二月'];
  28. // Non-Leap year Month days..
  29. Calendar.DOMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
  30. // Leap year Month days..
  31. Calendar.lDOMonth = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
  32. function Calendar(p_item, p_WinCal, p_month, p_year, p_format) {
  33.  if ((p_month == null) && (p_year == null)) return;
  34.  if (p_WinCal == null)
  35.   this.gWinCal = ggWinCal;
  36.  else
  37.   this.gWinCal = p_WinCal;
  38.  if (p_month == null) {
  39.   this.gMonthName = null;
  40.   this.gMonth = null;
  41.   this.gYearly = true;
  42.  } else {
  43.   this.gMonthName = Calendar.get_month(p_month);
  44.   this.gMonth = new Number(p_month);
  45.   this.gYearly = false;
  46.  }
  47.  this.gYear = p_year;
  48.  this.gFormat = p_format;
  49.  this.gBGColor = "white";
  50.  this.gFGColor = "black";
  51.  this.gTextColor = "black";
  52.  this.gHeaderColor = "black";
  53.  this.gReturnItem = p_item;
  54. }
  55. Calendar.get_month = Calendar_get_month;
  56. Calendar.get_daysofmonth = Calendar_get_daysofmonth;
  57. Calendar.calc_month_year = Calendar_calc_month_year;
  58. Calendar.print = Calendar_print;
  59. function Calendar_get_month(monthNo) {
  60.  return Calendar.Months[monthNo];
  61. }
  62. function Calendar_get_daysofmonth(monthNo, p_year) {
  63.  /*
  64.  Check for leap year ..
  65.  1.Years evenly divisible by four are normally leap years, except for...
  66.  2.Years also evenly divisible by 100 are not leap years, except for...
  67.  3.Years also evenly divisible by 400 are leap years.
  68.  */
  69.  if ((p_year % 4) == 0) {
  70.   if ((p_year % 100) == 0 && (p_year % 400) != 0)
  71.    return Calendar.DOMonth[monthNo];
  72.   return Calendar.lDOMonth[monthNo];
  73.  } else
  74.   return Calendar.DOMonth[monthNo];
  75. }
  76. function Calendar_calc_month_year(p_Month, p_Year, incr) {
  77.  /*
  78.  Will return an 1-D array with 1st element being the calculated month
  79.  and second being the calculated year
  80.  after applying the month increment/decrement as specified by 'incr' parameter.
  81.  'incr' will normally have 1/-1 to navigate thru the months.
  82.  */
  83.  var ret_arr = new Array();
  84.  if (incr == -1) {
  85.   // B A C K W A R D
  86.   if (p_Month == 0) {
  87.    ret_arr[0] = 11;
  88.    ret_arr[1] = parseInt(p_Year) - 1;
  89.   }
  90.   else {
  91.    ret_arr[0] = parseInt(p_Month) - 1;
  92.    ret_arr[1] = parseInt(p_Year);
  93.   }
  94.  } else if (incr == 1) {
  95.   // F O R W A R D
  96.   if (p_Month == 11) {
  97.    ret_arr[0] = 0;
  98.    ret_arr[1] = parseInt(p_Year) + 1;
  99.   }
  100.   else {
  101.    ret_arr[0] = parseInt(p_Month) + 1;
  102.    ret_arr[1] = parseInt(p_Year);
  103.   }
  104.  }
  105.  return ret_arr;
  106. }
  107. function Calendar_print() {
  108.  ggWinCal.print();
  109. }
  110. function Calendar_calc_month_year(p_Month, p_Year, incr) {
  111.  /*
  112.  Will return an 1-D array with 1st element being the calculated month
  113.  and second being the calculated year
  114.  after applying the month increment/decrement as specified by 'incr' parameter.
  115.  'incr' will normally have 1/-1 to navigate thru the months.
  116.  */
  117.  var ret_arr = new Array();
  118.  if (incr == -1) {
  119.   // B A C K W A R D
  120.   if (p_Month == 0) {
  121.    ret_arr[0] = 11;
  122.    ret_arr[1] = parseInt(p_Year) - 1;
  123.   }
  124.   else {
  125.    ret_arr[0] = parseInt(p_Month) - 1;
  126.    ret_arr[1] = parseInt(p_Year);
  127.   }
  128.  } else if (incr == 1) {
  129.   // F O R W A R D
  130.   if (p_Month == 11) {
  131.    ret_arr[0] = 0;
  132.    ret_arr[1] = parseInt(p_Year) + 1;
  133.   }
  134.   else {
  135.    ret_arr[0] = parseInt(p_Month) + 1;
  136.    ret_arr[1] = parseInt(p_Year);
  137.   }
  138.  }
  139.  return ret_arr;
  140. }
  141. // This is for compatibility with Navigator 3, we have to create and discard one object before the prototype object exists.
  142. //new Calendar();
  143. Calendar.prototype.getMonthlyCalendarCode = function() {
  144.  var vCode = "";
  145.  var vHeader_Code = "";
  146.  var vData_Code = "";
  147.  // Begin Table Drawing code here..
  148.  vCode = vCode + "<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=0 BGCOLOR="" + this.gBGColor + "">";
  149.  vHeader_Code = this.cal_header();
  150.  vData_Code = this.cal_data();
  151.  vCode = vCode + vHeader_Code + vData_Code;
  152.  vCode = vCode + "</TABLE>";
  153.  return vCode;
  154. }
  155. Calendar.prototype.show = function() {
  156.  var vCode = "";
  157.  this.gWinCal.document.open();
  158.  // Setup the page...
  159.  this.wwrite("<html>");
  160.  this.wwrite('<head><title>日期选择</title>');
  161.  this.wwrite("</head>");
  162.  this.wwrite("<body " +
  163.   "link="" + this.gLinkColor + "" " +
  164.   "vlink="" + this.gLinkColor + "" " +
  165.   "alink="" + this.gLinkColor + "" " +
  166.   "text="" + this.gTextColor + "">");
  167.  this.wwriteA("<TABLE WIDTH='100%' BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=#6699cc><TR><TD ALIGN=center><FONT FACE='" + fontface + "' SIZE=2 COLOR=WHITE><B>");
  168.  this.wwriteA(this.gYear + ' 年 ' +this.gMonthName );
  169.  this.wwriteA("</B><BR></TD></TR></TABLE>");
  170.  // Show navigation buttons
  171.  var prevMMYYYY = Calendar.calc_month_year(this.gMonth, this.gYear, -1);
  172.  var prevMM = prevMMYYYY[0];
  173.  var prevYYYY = prevMMYYYY[1];
  174.  var nextMMYYYY = Calendar.calc_month_year(this.gMonth, this.gYear, 1);
  175.  var nextMM = nextMMYYYY[0];
  176.  var nextYYYY = nextMMYYYY[1];
  177.  this.wwrite("<TABLE WIDTH='100%' BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD HEIGHT=10></TD></TR><TR><TD ALIGN=center>");
  178.  this.wwrite("<A HREF="" +
  179.   "javascript:window.opener.Build(" +
  180.   "'" + this.gReturnItem + "', '" + this.gMonth + "', '" + (parseInt(this.gYear)-1) + "', '" + this.gFormat + "'" +
  181.   ");" +
  182.   ""><img src='images/arrow_left_1.gif' width='21' height='16' border=0></A></TD><TD ALIGN=center>");
  183.  this.wwrite("<A HREF="" +
  184.   "javascript:window.opener.Build(" +
  185.   "'" + this.gReturnItem + "', '" + prevMM + "', '" + prevYYYY + "', '" + this.gFormat + "'" +
  186.   ");" +
  187.   ""><img src='images/arrow_left.gif' width='21' height='16' border=0></A></TD>");
  188.  this.wwrite("<TD ALIGN=center>");
  189.  this.wwrite("<A HREF="" +
  190.   "javascript:window.opener.Build(" +
  191.   "'" + this.gReturnItem + "', '" + nextMM + "', '" + nextYYYY + "', '" + this.gFormat + "'" +
  192.   ");" +
  193.   ""><img src='images/arrow_right.gif' width='21' height='16' border=0></A></TD><TD ALIGN=center>");
  194.  this.wwrite("<A HREF="" +
  195.   "javascript:window.opener.Build(" +
  196.   "'" + this.gReturnItem + "', '" + this.gMonth + "', '" + (parseInt(this.gYear)+1) + "', '" + this.gFormat + "'" +
  197.   ");" +
  198.   ""><img src='images/arrow_right_1.gif' width='21' height='16' border=0></A></TD></TR></TABLE><BR>");
  199.  // Get the complete calendar code for the month..
  200.  vCode = this.getMonthlyCalendarCode();
  201.  this.wwrite(vCode);
  202.  this.wwrite("</font></body></html>");
  203.  this.gWinCal.document.close();
  204. }
  205. Calendar.prototype.showY = function() {
  206.  var vCode = "";
  207.  var i;
  208.  var vr, vc, vx, vy;  // Row, Column, X-coord, Y-coord
  209.  var vxf = 285;   // X-Factor
  210.  var vyf = 200;   // Y-Factor
  211.  var vxm = 10;   // X-margin
  212.  var vym;    // Y-margin
  213.  if (isIE) vym = 75;
  214.  else if (isNav) vym = 25;
  215.  this.gWinCal.document.open();
  216.  // Show navigation buttons
  217.  var prevYYYY = parseInt(this.gYear) - 1;
  218.  var nextYYYY = parseInt(this.gYear) + 1;
  219.  // Get the complete calendar code for each month..
  220.  var j;
  221.  for (i=11; i>=0; i--) {
  222.   if (isIE)
  223.    this.wwrite("<DIV ID="layer" + i + "" CLASS="lclass" + i + "">");
  224.   else if (isNav)
  225.    this.wwrite("<LAYER ID="layer" + i + "" CLASS="lclass" + i + "">");
  226.   this.gMonth = i;
  227.   this.gMonthName = Calendar.get_month(this.gMonth);
  228.   vCode = this.getMonthlyCalendarCode();
  229.   this.wwrite(this.gMonthName + "/" + this.gYear + "<BR>");
  230.   this.wwrite(vCode);
  231.   if (isIE)
  232.    this.wwrite("</DIV>");
  233.   else if (isNav)
  234.    this.wwrite("</LAYER>");
  235.  }
  236.  this.wwrite("</font><BR></body></html>");
  237.  this.gWinCal.document.close();
  238. }
  239. Calendar.prototype.wwrite = function(wtext) {
  240.  this.gWinCal.document.writeln(wtext);
  241. }
  242. Calendar.prototype.wwriteA = function(wtext) {
  243.  this.gWinCal.document.write(wtext);
  244. }
  245. Calendar.prototype.cal_header = function() {
  246.  var vCode = "";
  247.  vCode = vCode + "<TR>";
  248.  vCode = vCode + "<TD WIDTH='17%'><FONT SIZE='2' FACE='" + fontface + "' COLOR='" + this.gHeaderColor + "'><B>日</B></FONT></TD>";
  249.  vCode = vCode + "<TD WIDTH='17%'><FONT SIZE='2' FACE='" + fontface + "' COLOR='" + this.gHeaderColor + "'><B>一</B></FONT></TD>";
  250.  vCode = vCode + "<TD WIDTH='17%'><FONT SIZE='2' FACE='" + fontface + "' COLOR='" + this.gHeaderColor + "'><B>二</B></FONT></TD>";
  251.  vCode = vCode + "<TD WIDTH='17%'><FONT SIZE='2' FACE='" + fontface + "' COLOR='" + this.gHeaderColor + "'><B>三</B></FONT></TD>";
  252.  vCode = vCode + "<TD WIDTH='17%'><FONT SIZE='2' FACE='" + fontface + "' COLOR='" + this.gHeaderColor + "'><B>四</B></FONT></TD>";
  253.  vCode = vCode + "<TD WIDTH='17%'><FONT SIZE='2' FACE='" + fontface + "' COLOR='" + this.gHeaderColor + "'><B>五</B></FONT></TD>";
  254.  vCode = vCode + "<TD WIDTH='17%'><FONT SIZE='2' FACE='" + fontface + "' COLOR='" + this.gHeaderColor + "'><B>六</B></FONT></TD>";
  255.  vCode = vCode + "</TR>";
  256.  vCode = vCode + "<TR><TD colspan='7'  HEIGHT=1 BGCOLOR=#6699cc></TD></TR>";
  257.  return vCode;
  258. }
  259. Calendar.prototype.cal_data = function() {
  260.  var vDate = new Date();
  261.  vDate.setDate(1);
  262.  vDate.setMonth(this.gMonth);
  263.  vDate.setFullYear(this.gYear);
  264.  var vFirstDay=vDate.getDay();
  265.  var vDay=1;
  266.  var vLastDay=Calendar.get_daysofmonth(this.gMonth, this.gYear);
  267.  var vOnLastDay=0;
  268.  var vCode = "";
  269.  /*
  270.  Get day for the 1st of the requested month/year..
  271.  Place as many blank cells before the 1st day of the month as necessary.
  272.  */
  273.  vCode = vCode + "<TR>";
  274.  for (i=0; i<vFirstDay; i++) {
  275.   vCode = vCode + "<TD WIDTH='14%'" + this.write_weekend_string(i) + "><FONT SIZE='2' FACE='" + fontface + "'> </FONT></TD>";
  276.  }
  277.  // Write rest of the 1st week
  278.  for (j=vFirstDay; j<7; j++) {
  279.   vCode = vCode + "<TD WIDTH='14%'" + this.write_weekend_string(j) + "><FONT SIZE='2' FACE='" + fontface + "'>" +
  280.    "<A HREF='#' " +
  281.     "onClick="self.opener.document." + this.gReturnItem + ".value='" +
  282.     this.format_data(vDay) +
  283.     "';window.close();">" +
  284.     this.format_day(vDay) +
  285.    "</A>" +
  286.    "</FONT></TD>";
  287.   vDay=vDay + 1;
  288.  }
  289.  vCode = vCode + "</TR>";
  290.  // Write the rest of the weeks
  291.  for (k=2; k<7; k++) {
  292.   vCode = vCode + "<TR>";
  293.   for (j=0; j<7; j++) {
  294.    vCode = vCode + "<TD WIDTH='14%'" + this.write_weekend_string(j) + "><FONT SIZE='2' FACE='" + fontface + "'>" +
  295.     "<A HREF='#' " +
  296.      "onClick="self.opener.document." + this.gReturnItem + ".value='" +
  297.      this.format_data(vDay) +
  298.      "';window.close();">" +
  299.     this.format_day(vDay) +
  300.     "</A>" +
  301.     "</FONT></TD>";
  302.    vDay=vDay + 1;
  303.    if (vDay > vLastDay) {
  304.     vOnLastDay = 1;
  305.     break;
  306.    }
  307.   }
  308.   if (j == 6)
  309.    vCode = vCode + "</TR>";
  310.   if (vOnLastDay == 1)
  311.    break;
  312.  }
  313.  // Fill up the rest of last week with proper blanks, so that we get proper square blocks
  314.  for (m=1; m<(7-j); m++) {
  315.   if (this.gYearly)
  316.    vCode = vCode + "<TD WIDTH='14%'" + this.write_weekend_string(j+m) +
  317.    "><FONT SIZE='2' FACE='" + fontface + "' COLOR='gray'> </FONT></TD>";
  318.   else
  319.    vCode = vCode + "<TD WIDTH='14%'" + this.write_weekend_string(j+m) +
  320.    "><FONT SIZE='2' FACE='" + fontface + "' COLOR='gray'>" + m + "</FONT></TD>";
  321.  }
  322.  return vCode;
  323. }
  324. Calendar.prototype.format_day = function(vday) {
  325.  var vNowDay = gNow.getDate();
  326.  var vNowMonth = gNow.getMonth();
  327.  var vNowYear = gNow.getFullYear();
  328.  if (vday == vNowDay && this.gMonth == vNowMonth && this.gYear == vNowYear)
  329.   return ("<FONT COLOR="RED"><B>" + vday + "</B></FONT>");
  330.  else
  331.   return (vday);
  332. }
  333. Calendar.prototype.write_weekend_string = function(vday) {
  334.  var i;
  335.  // Return special formatting for the weekend day.
  336.  for (i=0; i<weekend.length; i++) {
  337.   if (vday == weekend[i])
  338.    return (" BGCOLOR="" + weekendColor + """);
  339.  }
  340.  return "";
  341. }
  342. Calendar.prototype.format_data = function(p_day) {
  343.  var vData;
  344.  var vMonth = 1 + this.gMonth;
  345.  vMonth = (vMonth.toString().length < 2) ? "0" + vMonth : vMonth;
  346.  var vMon = Calendar.get_month(this.gMonth).substr(0,3).toUpperCase();
  347.  var vFMon = Calendar.get_month(this.gMonth).toUpperCase();
  348.  var vY4 = new String(this.gYear);
  349.  var vY2 = new String(this.gYear.substr(2,2));
  350.  var vDD = (p_day.toString().length < 2) ? "0" + p_day : p_day;
  351.  switch (this.gFormat) {
  352.   case "yyyy-mm-dd":
  353.    vData = vY4 + "-" + vMonth + "-" + vDD;
  354.    break;
  355.   case "DD-MM-YYYY" :
  356.    vData = vDD + "-" + vMonth + "-" + vY4;
  357.    break;
  358.   default :
  359.    vData = vMonth + "/" + vDD + "/" + vY4;
  360.  }
  361.  return vData;
  362. }
  363. function Build(p_item, p_month, p_year, p_format) {
  364.  var p_WinCal = ggWinCal;
  365.  gCal = new Calendar(p_item, p_WinCal, p_month, p_year, p_format);
  366.  // Customize your Calendar here..
  367.  gCal.gBGColor="white";
  368.  gCal.gLinkColor="black";
  369.  gCal.gTextColor="black";
  370.  gCal.gHeaderColor="darkgreen";
  371.  // Choose appropriate show function
  372.  if (gCal.gYearly) gCal.showY();
  373.  else gCal.show();
  374. }
  375. function show_calendar() {
  376.  /*
  377.   p_month : 0-11 for Jan-Dec; 12 for All Months.
  378.   p_year : 4-digit year
  379.   p_format: Date format (mm/dd/yyyy, dd/mm/yy, ...)
  380.   p_item : Return Item.
  381.  */
  382.  p_item = arguments[0];
  383.  if (arguments[1] == null)
  384.   p_month = new String(gNow.getMonth());
  385.  else
  386.   p_month = arguments[1];
  387.  if (arguments[2] == "" || arguments[2] == null)
  388.   p_year = new String(gNow.getFullYear().toString());
  389.  else
  390.   p_year = arguments[2];
  391.  if (arguments[3] == null)
  392.   p_format = "yyyy-mm-dd";
  393.  else
  394.   p_format = arguments[3];
  395.  vWinCal = window.open("", "Calendar",
  396.   "width=300,height=200,status=no,resizable=no,top=163,left=192");
  397.  vWinCal.opener = self;
  398.  ggWinCal = vWinCal;
  399.  Build(p_item, p_month, p_year, p_format);
  400. }
  401. </script>