﻿//调用<img onload="ResizeImage(this, 110, 110);"/>
function ResizeImage(F,D,G){if(F!=null){imageObject=F}var E=imageObject.readyState;if(E!="complete"){setTimeout("ResizeImage(null,"+D+","+G+")",50);return }var B=new Image();B.src=imageObject.src;var A=B.width;var C=B.height;if(A>D||C>G){a=A/D;b=C/G;if(b>a){a=b}A=A/a;C=C/a}if(A>0&&C>0){imageObject.width=A;imageObject.height=C}}
//调用<script type="text/javascript">InsertFlash("images/top.swf",110,110);</script>
function InsertFlash(Flash,Width,Height){
	document.writeln("<embed src=\"" + Flash + "\"  type=\"application\/x-shockwave-flash\" width=\""+Width+"\" height=\""+Height+"\"  wmode=\"transparent\" ><\/embed>");
}
//功能介绍：展开树状分支
function showList(show){if (show.style.display == 'none') {show.style.display = 'block';}else {show.style.display = 'none';}}
//反选
function checkAll(thisform){var ids = thisform.elements['id'];var type = typeof(ids.name); if ( type != 'undefined' ){ids.checked = !ids.checked;}else{for(i=0; i<ids.length; i++){ids[i].checked = !ids[i].checked;}}}
/*****************************
TreeMenu
*****************************/
function Ob(o){
 var o=document.getElementById(o)?document.getElementById(o):o;
 return o;
}
function Hd(o) {
 Ob(o).style.display="none";
}
function Sw(o) {
 Ob(o).style.display="";
}
function ExCls(o,a,b,n){
 var o=Ob(o);
 for(i=0;i<n;i++) {o=o.parentNode;}
 o.className=o.className==a?b:a;
}
function CNLTreeMenu(id,TagName0) {
  this.id=id;
  this.TagName0=TagName0==""?"li":TagName0;
  this.AllNodes = Ob(this.id).getElementsByTagName(TagName0);
  this.InitCss = function (ClassName0,ClassName1,ClassName2,ImgUrl) {
  this.ClassName0=ClassName0;
  this.ClassName1=ClassName1;
  this.ClassName2=ClassName2;
  this.ImgUrl=ImgUrl || "images/s.gif";
  this.ImgBlankA ="<img src=\""+this.ImgUrl+"\" class=\"s\" onclick=\"ExCls(this,'"+ClassName0+"','"+ClassName1+"',1);\" alt=\"展开/折叠\" />";
  this.ImgBlankB ="<img src=\""+this.ImgUrl+"\" class=\"s\" />";
  for (i=0;i<this.AllNodes.length;i++ ) {
   this.AllNodes[i].className==""?this.AllNodes[i].className=ClassName1:"";
   this.AllNodes[i].innerHTML=(this.AllNodes[i].className==ClassName2?this.ImgBlankB:this.ImgBlankA)+this.AllNodes[i].innerHTML;
   }
 }
 this.SetNodes = function (n) {
  var sClsName=n==0?this.ClassName0:this.ClassName1;
  for (i=0;i<this.AllNodes.length;i++ ) {
   this.AllNodes[i].className==this.ClassName2?"":this.AllNodes[i].className=sClsName;
  }
 }
}


function AddToSort1(imagePath){
  window.opener.form1.banner_1.focus();								
  window.opener.document.form1.banner_1.value=imagePath;
  window.opener=null;
  window.close();
}
function AddToSort2(imagePath){
  window.opener.form1.banner_2.focus();								
  window.opener.document.form1.banner_2.value=imagePath;
  window.opener=null;
  window.close();
}
function AddToSort3(imagePath){
  window.opener.form1.banner_3.focus();								
  window.opener.document.form1.banner_3.value=imagePath;
  window.opener=null;
  window.close();
}
function AddToSort4(imagePath){
  window.opener.form1.banner_4.focus();								
  window.opener.document.form1.banner_4.value=imagePath;
  window.opener=null;
  window.close();
}
function AddToSort5(imagePath){
  window.opener.form1.pdf.focus();								
  window.opener.document.form1.pdf.value=imagePath;
  window.opener=null;
  window.close();
}


function OpenScript(url,width,height)
{
  var win = window.open(url,"SelectToSort",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}

function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6. 
{ 
    var arVersion = navigator.appVersion.split("MSIE") 
    var version = parseFloat(arVersion[1]) 
    if ((version >= 5.5) && (document.body.filters)) 
    { 
       for(var j=0; j<document.images.length; j++) 
       { 
          var img = document.images[j] 
          var imgName = img.src.toUpperCase() 
          if (imgName.substring(imgName.length-3, imgName.length) == "PNG") 
          { 
             var imgID = (img.id) ? "id='" + img.id + "' " : "" 
             var imgClass = (img.className) ? "class='" + img.className + "' " : "" 
             var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' " 
             var imgStyle = "display:inline-block;" + img.style.cssText 
             if (img.align == "left") imgStyle = "float:left;" + imgStyle 
             if (img.align == "right") imgStyle = "float:right;" + imgStyle 
             if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle 
             var strNewHTML = "<span " + imgID + imgClass + imgTitle 
             + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";" 
             + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader" 
             + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
             img.outerHTML = strNewHTML 
             j = j-1 
          } 
       } 
    }     
} 
