home *** CD-ROM | disk | FTP | other *** search
/ Steganos Hacker Tools / SHT151.iso / jscript / scriptlib.js < prev   
Encoding:
JavaScript  |  2001-06-22  |  44.1 KB  |  1,323 lines

  1. // -- Adobe GoLive JavaScript Library// -- Global FunctionsCSAg = window.navigator.userAgent; CSBVers = parseInt(CSAg.charAt(CSAg.indexOf("/")+1),10);
  2. function IsIE() { return CSAg.indexOf("MSIE") > 0;}
  3. function CSIEStyl(s) { return document.all.tags("div")[s].style; }
  4. function CSNSStyl(s) { return CSFindElement(s,0); }
  5. function CSFindElement(n,ly) { if (CSBVers < 4) return document[n];
  6.     var curDoc = ly ? ly.document : document; var elem = curDoc[n];
  7.     if (!elem) { for (var i=0;i<curDoc.layers.length;i++) {
  8.         elem = CSFindElement(n,curDoc.layers[i]); if (elem) return elem; }}
  9.     return elem;
  10. }
  11. function CSSetStylePos(s,d,p) { if (IsIE()) { if (d == 0) CSIEStyl(s).posLeft = p; else CSIEStyl(s).posTop = p; }
  12.     else { if (d == 0) CSNSStyl(s).left = p; else CSNSStyl(s).top = p; } }
  13. function CSGetStylePos(s,d) { if (IsIE()) { if (d == 0) return CSIEStyl(s).posLeft; else return CSIEStyl(s).posTop; }
  14.     else { if (d == 0) return CSNSStyl(s).left; else return CSNSStyl(s).top; }}
  15. CSLoopIsRunning = false; CSFctArray = new Array; CSTimeoutID = null;
  16. function CSLoop() {    
  17.     CSLoopIsRunning = false;
  18.     for (i=0;i<CSFctArray.length;i++) {
  19.         var curFct = CSFctArray[i];
  20.         if (curFct)    {
  21.             if (curFct.DoFunction(curFct)) { CSLoopIsRunning = true; curFct.counter++; }
  22.             else CSFctArray[i] = 0;
  23.         }
  24.     }
  25.     if (CSLoopIsRunning) CSTimeoutID = setTimeout("CSLoop()", 1);
  26. }
  27. function CSStartFunction(fct,data) {
  28.     if (!CSLoopIsRunning) { CSFctArray = 0; CSFctArray = new Array; }
  29.     var fctInfo = new Object;
  30.     fctInfo.DoFunction = fct; fctInfo.counter = 0; fctInfo.data = data;
  31.     CSFctArray[CSFctArray.length] = fctInfo; 
  32.     if (!CSLoopIsRunning) CSLoop();
  33. }
  34. function CSStopFunction(sceneName) {
  35.     var i;
  36.     for (i=0;i<CSFctArray.length;i++) {
  37.         var curFct = CSFctArray[i];
  38.         if (curFct){ if (curFct.data.name == sceneName){ CSFctArray[i] = 0; return; } }
  39.     }
  40. }
  41. function CSStopComplete() {
  42.     if (CSTimeoutID == null) return;
  43.     clearTimeout (CSTimeoutID); CSLoopIsRunning = false; CSTimeoutID = null;
  44. }
  45. function CSSetStyleVis(s,v) { if (IsIE()) CSIEStyl(s).visibility = (v == 0) ? "hidden" : "visible";
  46.     else CSNSStyl(s).visibility = (v == 0) ? 'hide' : 'show'; }
  47. function CSGetStyleVis(s) { if (IsIE()) return (CSIEStyl(s).visibility == "hidden") ? 0 : 1;
  48.     else return (CSNSStyl(s).visibility == 'hide') ? 0 : 1;}
  49. function CSGetLayerClip (el) {
  50.     if (el.isIE) return (new CSRect(0,0,el.offsetWidth,el.offsetHeight));
  51.     else return (new CSRect(el.clip.left,el.clip.top,el.clip.width,el.clip.height));
  52. }
  53. function CSSetLayerClip (el,clipRect) {
  54.     var l,t,r,b;
  55.     l=clipRect.left; t=clipRect.top; r=l+clipRect.width; b=t+clipRect.height;
  56.     if(el.isIE) { el.style.clip = "rect("+ t + " " + r + " " + b + " " + l + ")"; }
  57.     else {
  58.         el.clip.left=l; el.clip.top=t; 
  59.         el.clip.width=clipRect.width; el.clip.height=clipRect.height;
  60.     }
  61.     CSSetStyleVis(el.layer);
  62. }
  63. function CSRect (left,top,width,height) {
  64. this.left=left; this.top=top; this.width=width; this.height=height;
  65. }
  66. function CSCreateTransElement (layer, steps) {
  67.     var el;
  68.     if (IsIE()) el=document.all.tags("div")[layer];
  69.     else el=CSNSStyl(layer);
  70.     if (el==null) return null;
  71.     if (el.locked && (el.locked == true)) return null;
  72.     el.isIE=IsIE();
  73.     el.clipRect=CSGetLayerClip(el);
  74.     if (el.clipRect==null) return null;
  75.     el.maxValue=steps;
  76.     if (el.maxValue<=0) el.maxValue=30;
  77.     el.modus=""; el.layer=layer;
  78.     el.width=el.clipRect.width; el.height=el.clipRect.height;
  79.     el.locked = true;
  80.     return el;
  81. }
  82. function CSDisposeTransElement (el) { el.locked = false; }
  83. function CSMoveLoop(fInf) {
  84.     var ticks = 60 * (((new Date()).getTime()) - fInf.data.startTime)/1000;
  85.     var f = ticks/fInf.data.ticks;
  86.     if (f < 1) { CSSetStylePos(fInf.data.layer,0,fInf.data.start[0] * (1-f) + fInf.data.end[0] * f);
  87.         CSSetStylePos(fInf.data.layer,1,fInf.data.start[1] * (1-f) + fInf.data.end[1] * f); return true; }
  88.     else { CSSetStylePos(fInf.data.layer,0,fInf.data.end[0]);
  89.         CSSetStylePos(fInf.data.layer,1,fInf.data.end[1]); }
  90.     return false;
  91. }
  92. function CSSlideObj (layer,start,end,ticks,startTime) {
  93.     this.layer=layer;this.start=start;this.end=end;this.ticks=ticks;this.startTime=startTime;
  94. }
  95. function CSSlideLayer(l,pos,anim,ticks) {
  96.     var x = pos[0]; var y = pos[1];
  97.  
  98.     if (l == '') return;
  99.     if (!anim) { CSSetStylePos(l,0,x); CSSetStylePos(l,1,y); }
  100.     else {  var fctData = new CSSlideObj(l,new Array(CSGetStylePos(l,0),CSGetStylePos(l,1)),new Array(x,y),ticks,(new Date()).getTime()); CSStartFunction(CSMoveLoop,fctData); }
  101. }
  102. CSStateArray = new Object;
  103. CSCookieArray = new Object;
  104. CSCookieValArray = new Object;
  105. function CSWriteCookie(action) {
  106.     var name   = "DFT" + action[1];
  107.     var hrs    = action[2];
  108.     var path   = action[3];
  109.     var domain = action[4];
  110.     var secure = action[5];
  111.     var exp    = new Date((new Date()).getTime() + hrs * 3600000);
  112.     var cookieVal = "";
  113.     for(var prop in CSCookieArray) {
  114.         if(("DFT" + CSCookieArray[prop]) == name) {
  115.             if(cookieVal != "") cookieVal += "&";
  116.             cookieVal += prop + ":" + escape(CSStateArray[prop]);
  117.         }
  118.     }
  119.     if(hrs != 0)
  120.         cookieVal += "; expires=" + exp.toGMTString();
  121.     if(path != "")
  122.         cookieVal += "; path=" + path;
  123.     if(domain != "")
  124.         cookieVal += "; domain=" + domain;
  125.     if(secure == true)
  126.         cookieVal += "; secure";
  127.     //alert(cookieVal);
  128.     document.cookie = name + '=' + cookieVal;
  129. }
  130. function CSReadCookie(action) {
  131.     var name    = "DFT" + action[1];
  132.     var cookies = document.cookie;
  133.     if(cookies == "") return;
  134.     var start = cookies.indexOf(name);
  135.     if(start == -1) return;
  136.     start += name.length + 1;
  137.     var end = cookies.indexOf(";", start);
  138.     if(end == -1) end = cookies.length;
  139.     var cookieVal = cookies.substring(start, end);
  140.     var arr = cookieVal.split('&');
  141.     for(var i = 0; i < arr.length; i++) {
  142.         var a = arr[i].split(':');
  143.         CSStateArray[a[0]] = unescape(a[1]);
  144.     }    
  145. }
  146. function CSDefineState(action) {
  147.     CSCookieArray[action[1]] = action[3]; 
  148. }
  149. function CSSetState(action) {
  150.     CSStateArray[action[1]] = action[2];
  151. }
  152. function CSInitState(action) {
  153.     if(typeof(CSStateArray[action[1]]) == "undefined")
  154.         CSStateArray[action[1]] = action[2];
  155. }
  156. function CSCheckState(action) {
  157.     var obj1 = CSStateArray[action[1]];
  158.     var obj2 = action[2];
  159.     if(typeof(obj1) == "object") {
  160.         for(var i=0;i<obj1.length;i++) {
  161.             if(obj1[i] != obj2[i])
  162.                 return false;
  163.             }
  164.         return true;
  165.         }
  166.     var res;
  167.     var op = action[3];
  168.              if(op == "==") res = (CSStateArray[action[1]] == action[2]);    
  169.         else if(op == "!=") res = (CSStateArray[action[1]] != action[2]);    
  170.         else if(op == ">" ) res = (CSStateArray[action[1]] >  action[2]);    
  171.         else if(op == ">=") res = (CSStateArray[action[1]] >= action[2]);    
  172.         else if(op == "<" ) res = (CSStateArray[action[1]] <  action[2]);    
  173.         else if(op == "<=") res = (CSStateArray[action[1]] <= action[2]);    
  174.     return res;
  175. }
  176. function CSScriptInit() {if(typeof(skipPage) != "undefined") { if(skipPage) return; }
  177. idxArray = new Array;
  178. for(var i=0;i<CSInit.length;i++)
  179.     idxArray[i] = i;
  180. CSAction2(CSInit, idxArray);
  181. }function CSScriptExit() {idxArray = new Array;
  182. for(var i=0;i<CSExit.length;i++)
  183.     idxArray[i] = i;
  184. CSAction2(CSExit, idxArray);
  185. }CSInit = new Array;
  186. CSExit = new Array;
  187. CSStopExecution = false;
  188. function CSAction(array) { 
  189.     return CSAction2(CSAct, array);
  190. }
  191. function CSAction2(fct, array) { 
  192.     var result;
  193.     for (var i=0;i<array.length;i++) {
  194.         if(CSStopExecution) return false; 
  195.         var actArray = fct[array[i]];
  196.         if(actArray == null) return false; 
  197.         var tempArray = new Array;
  198.         for(var j=1;j<actArray.length;j++) {
  199.             if((actArray[j] != null) && (typeof(actArray[j]) == "object") && (actArray[j].length == 2)) {
  200.                 if(actArray[j][0] == "VAR") {
  201.                     tempArray[j] = CSStateArray[actArray[j][1]];
  202.                 }
  203.                 else {
  204.                     if(actArray[j][0] == "ACT") {
  205.                         tempArray[j] = CSAction(new Array(new String(actArray[j][1])));
  206.                     }
  207.                 else
  208.                     tempArray[j] = actArray[j];
  209.                 }
  210.             }
  211.             else
  212.                 tempArray[j] = actArray[j];
  213.         }            
  214.         result = actArray[0](tempArray);
  215.     }
  216.     return result;
  217. }
  218. CSAct = new Object;
  219. CSIm = new Object();
  220. function CSIShow(n,i) {
  221.     if (document.images) {
  222.         if (CSIm[n]) {
  223.             var img = (!IsIE()) ? CSFindElement(n,0) : document[n];
  224.             if (img && typeof(CSIm[n][i].src) != "undefined") {img.src = CSIm[n][i].src;}
  225.             if(i != 0)
  226.                 self.status = CSIm[n][3];
  227.             else
  228.                 self.status = " ";
  229.             return true;
  230.         }
  231.     }
  232.     return false;
  233. }
  234. function CSILoad(action) {
  235.     im = action[1];
  236.     if (document.images) {
  237.         CSIm[im] = new Object();
  238.         for (var i=2;i<5;i++) {
  239.             if (action[i] != '') { CSIm[im][i-2] = new Image(); CSIm[im][i-2].src = action[i]; }
  240.             else CSIm[im][i-2] = 0;
  241.         }
  242.         CSIm[im][3] = action[5];
  243.     }
  244. }
  245.  
  246. function CSClickReturn () {
  247.     var bAgent = window.navigator.userAgent; 
  248.     var bAppName = window.navigator.appName;
  249.     if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
  250.         return true; // dont follow link
  251.     else return false; // dont follow link
  252. }
  253. function CSButtonReturn () {
  254.     var bAgent = window.navigator.userAgent; 
  255.     var bAppName = window.navigator.appName;
  256.     if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
  257.         return false; // follow link
  258.     else return true; // follow link
  259. }
  260. function CSBrowserSwitch(action) {
  261.     var bAgent    = window.navigator.userAgent;
  262.     var bAppName    = window.navigator.appName;
  263.  
  264.     var isNS        = (bAppName.indexOf("Netscape") >= 0);
  265.     var isIE        = (bAppName.indexOf("Explorer") >= 0);
  266.     var isWin        = (bAgent.indexOf("Win") >= 0); 
  267.     var isMac        = (bAgent.indexOf("Mac") >= 0); 
  268.  
  269.     var vers        = 0;
  270.     var versIdx    = (bAgent.indexOf("Mozilla/"));
  271.  
  272.     if(versIdx >= 0)
  273.         {
  274.         var sstr    = bAgent.substring(versIdx + 8, versIdx + 9);
  275.         vers        = parseInt(sstr) - 2;
  276.         }
  277.  
  278.     var url        = action[1];
  279.     var platform    = action[2];
  280.  
  281.     var versVec;
  282.     if(platform)
  283.         {
  284.         if(isNS && isMac) versVec = action[3];
  285.         if(isIE && isMac) versVec = action[5];
  286.         if(isNS && isWin) versVec = action[4];
  287.         if(isIE && isWin) versVec = action[6];
  288.         }
  289.     else
  290.         {
  291.         if(isNS) versVec = action[3];
  292.         if(isIE) versVec = action[4];
  293.         }
  294.  
  295.     if(vers > (versVec.length-1))
  296.         vers = versVec.length-1;
  297.     if(versVec[vers] == 0)
  298.         {
  299.         location            = url;
  300.         CSStopExecution    = true;    
  301.         }
  302. }
  303.  
  304.  
  305. function CSURLPopupShow(formName, popupName, target) {
  306.     var form  = CSFindElement(formName);
  307.     var popup = form.elements[popupName];
  308.     window.open(popup.options[popup.selectedIndex].value, target);
  309.     popup.selectedIndex = 0;
  310. }
  311.  
  312. function CSSetStyleDepth(style,depth) { if (IsIE()) CSIEStyl(style).zIndex = depth; else CSNSStyl(style).zIndex = depth;}
  313. function CSGetStyleDepth(style) { if (IsIE()) return (CSIEStyl(style).zIndex); else return (CSNSStyl(style).zIndex); }
  314. CSSeqArray = new Array;
  315. function CSSeqActionFct(seq,loopCount,continueLoop) {
  316.     if ((seq.loop < 2) || ((loopCount % 2) != 0)) {
  317.         for (var i=0;i<seq.actionCount;i++) {
  318.             if (seq.actions[3*i + 1] <= seq.frame) {
  319.                 if ((loopCount > 1) && (seq.actions[3*i + 1] < seq.start)) continue;
  320.                 if (seq.actions[3*i + 2] < loopCount) {
  321.                     seq.actions[3*i + 2] = loopCount; CSLoopIsRunning = true;
  322.                     CSAction(new Array(seq.actions[3*i + 0])); continueLoop = true;
  323.                 }
  324.             } else { continueLoop = true; break; }
  325.         }
  326.     } else {
  327.         for (var i=seq.actionCount-1;i>=0;i--) {
  328.             if (seq.actions[3*i + 1] > seq.frame) {
  329.                 if (seq.actions[3*i + 1] > seq.end) continue;
  330.                 if (seq.actions[3*i + 2] < loopCount) {
  331.                     seq.actions[3*i + 2] = loopCount; CSLoopIsRunning = true;
  332.                     CSAction(new Array(seq.actions[3*i + 0])); continueLoop = true;
  333.                 }
  334.             } else { continueLoop = true; break; }
  335.         }
  336.     }
  337.     return continueLoop;
  338. }        
  339. function CSSeqFunction(fctInfo)
  340. {
  341.     var seq = fctInfo.data; var oldFrame = seq.frame;
  342.     var newTicks = (new Date()).getTime();
  343.     seq.frame = Math.round((seq.fps * (newTicks - seq.startTicks)/1000.0) - 0.5);
  344.     var continueLoop  = false; var loopCount = 1;
  345.     
  346.     if (seq.loop > 0) {
  347.         continueLoop = true;
  348.         if (seq.loop == 1) {
  349.             var iv = (seq.end - seq.start);
  350.             var f = Math.round(((seq.frame - seq.start) / iv) - 0.5);
  351.             if (f < 0) f = 0;
  352.             loopCount = f+1;
  353.             seq.frame = seq.start + ((seq.frame - seq.start) % (seq.end - seq.start));
  354.         } else {
  355.             var iv = (seq.end - seq.start);
  356.             var f = Math.round(((seq.frame - seq.start) / iv) - 0.5);
  357.             if (f < 0) f = 0;
  358.             loopCount = f+1;
  359.             f = (seq.frame - seq.start) % (2 * iv);
  360.             if (f > iv) f = 2*iv - f;
  361.             seq.frame = seq.start + f;
  362.         }
  363.     }
  364.     continueLoop = CSSeqActionFct(seq,loopCount,continueLoop);
  365.     for (var i=0;i<seq.tracks.length;i++) {
  366.         var track = seq.tracks[i]; var frameCount = 0; var lastCount = 0; var partCount = 0;
  367.         var partIdx = track.parts.ticks.length;
  368.         for (var k=0;k<track.parts.ticks.length;k++) {
  369.             frameCount += track.parts.ticks[k];
  370.             if (frameCount > seq.frame) { partIdx = k; partCount = seq.frame - lastCount; break; }
  371.             lastCount = frameCount;
  372.         }
  373.         if (partIdx < track.parts.ticks.length) {
  374.             var type=track.parts.moveType[partIdx];
  375.             if(type==1) CSSetLinearPos (track, partIdx, partCount);
  376.             else if(type==2) CSSetCurvePos (track, partIdx, partCount);
  377.             else if(type==3) if (oldFrame != seq.frame) CSSetRandomPos (track, partIdx, partCount);
  378.                              else { x = CSGetStylePos(track.layer,0); y = CSGetStylePos(track.layer,1); }
  379.             CSSetStyleVis(track.layer,track.parts.visibilities[partIdx]);
  380.             CSSetStyleDepth(track.layer,track.parts.depths[partIdx]);
  381.             continueLoop = true;
  382.         } else {
  383.             var partIdx = track.parts.moveType.length-1;
  384.             var posArray = track.parts.positions;
  385.             var x = posArray[partIdx * 6 + 0]; var y = posArray[partIdx * 6 + 1];
  386.             CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  387.             CSSetStyleVis(track.layer,track.parts.visibilities[partIdx]);
  388.             CSSetStyleDepth(track.layer,track.parts.depths[partIdx]);
  389.         }
  390.     }
  391.     return continueLoop;
  392. }
  393. function CSSetLinearPos (track, partIdx, partCount) {
  394.     var curTicks = track.parts.ticks[partIdx];
  395.     var pIdx1 = partIdx * 6; var pIdx2 = (partIdx+1) * 6;
  396.     var posArray = track.parts.positions;
  397.     var x = posArray[pIdx1 + 0]; var y = posArray[pIdx1 + 1];
  398.     var x1,x2,y1,y2;
  399.     var factor = partCount/curTicks;
  400.     x1 = x; y1 = y;
  401.     x2 = posArray[pIdx2 + 0]; y2 = posArray[pIdx2 + 1];
  402.     x = x1 * (1-factor) + x2 * factor; y = y1 * (1-factor) + y2 * factor;
  403.     CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  404. }
  405. function CSSetCurvePos (track, partIdx, partCount) {
  406.     var curTicks = track.parts.ticks[partIdx];
  407.     var pIdx1 = partIdx * 6; var pIdx2 = (partIdx+1) * 6;
  408.     var posArray = track.parts.positions;
  409.     var x = posArray[pIdx1 + 0]; var y = posArray[pIdx1 + 1];
  410.     var x1,x2,x3,x4,y1,y2,y3,y4;
  411.     var factor = partCount/curTicks;
  412.     var t = factor; var u = t * t; var v = u * t;
  413.     var val1 = 3*(u-t) - v + 1; var val2 = 3*(v+t - 2*u); var val3 = 3*(u-v); var val4 = v;
  414.     x1 = x; y1 = y; x2 = posArray[pIdx1 + 2]; y2 = posArray[pIdx1 + 3];
  415.     x3 = posArray[pIdx1 + 4]; y3 = posArray[pIdx1 + 5];
  416.     x4 = posArray[pIdx2 + 0]; y4 = posArray[pIdx2 + 1];
  417.     x = x1 * val1 + x2 * val2 + x3 * val3 + x4 * val4;
  418.     y = y1 * val1 + y2 * val2 + y3 * val3 + y4 * val4;
  419.     CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  420. }
  421. function CSSetRandomPos (track, partIdx, partCount) {
  422.     var curTicks = track.parts.ticks[partIdx];
  423.     var pIdx1 = partIdx * 6; var pIdx2 = (partIdx+1) * 6;
  424.     var posArray = track.parts.positions;
  425.     var x = posArray[pIdx1 + 0]; var y = posArray[pIdx1 + 1];
  426.     var x1,x2,y1,y2;
  427.     var factor = partCount/curTicks;
  428.     x1 = x; y1 = y;
  429.     x2 = posArray[pIdx2 + 0]; y2 = posArray[pIdx2 + 1];
  430.     var factorx = Math.random(); var factory = Math.random();
  431.     x = x1 * (1-factorx) + x2 * factorx; y = y1 * (1-factory) + y2 * factory;
  432.     CSSetStylePos(track.layer,0,x); CSSetStylePos(track.layer,1,y);
  433. }
  434. function CSStartSeq(name) {
  435.     var seq = CSGetScene(name); var date = new Date()
  436.     seq.startTicks = date.getTime()
  437.     for (var i=0;i<seq.actionCount;i++) seq.actions[3*i+2] = 0;
  438.     CSStartFunction(CSSeqFunction,seq);
  439. }
  440. function CSSceneObj (name,fps,loop,start,end,frame,sTicks,numAct,acts,tracks) {
  441.     this.name=name;this.fps=fps;this.loop=loop;this.start=start;this.end=end;
  442.     this.frame=frame;this.startTicks=sTicks;this.actionCount=numAct;
  443.     this.actions=acts;this.tracks=tracks;
  444. }
  445. function CSTrackObj (name,partIdx,partCount,parts) {
  446.     this.layer=name;this.partIdx=partIdx;this.partCount=partCount;this.parts=parts;
  447. }
  448. function CSPartObj (ticks,pos,depths,vis,moveType) {
  449.     this.ticks=ticks;this.positions=pos;this.depths=depths;this.visibilities=vis;
  450.     this.moveType=moveType;
  451. }
  452. function CSGetScene (name) {
  453.     for (i=0;i<CSSeqArray.length;i++) { var seq = CSSeqArray[i]; if (seq.name==name) return seq; }
  454.     return 0;
  455. }
  456.  
  457. function CSAutoStartScene(action) { CSStartSeq (action[1]); }
  458.  
  459. // -- Action Functions
  460. function CSGetFormElementValue(action) {
  461.     var form = action[1];
  462.     var elem = action[2];
  463.     return document.forms[form].elements[elem].value;
  464. }
  465. function CSGetLayerPos(action) {
  466.     var layer = action[1];
  467.     var x        = CSGetStylePos(layer, 0);
  468.     var y        = CSGetStylePos(layer, 1);
  469.     return new Array(x, y);
  470. }
  471. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  472. function CSPAKtrg2frames(action) {
  473.     parent.frames[action[1]].location.href = action[2]
  474.     parent.frames[action[3]].location.href = action[4]
  475.  }
  476. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  477. function CSSlideShowAutoStop(action)
  478. {
  479. if (SSAfini==0) SSAfini=1
  480. else SSAfini=0 ; SSAnumimg = SSAnumimg+2 ;  slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)
  481. }
  482. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  483. function CSSlideShowAuto(action)
  484. {
  485. SSAfini=0
  486. SSAnumimg=0
  487. SSAmax=action[2]
  488. SSAimgNom=action[1]
  489. SSAtemps=action[3]*1000
  490. if (action[4]==true)
  491.         {
  492.         SSAstop=true
  493.         }
  494.     else SSAstop=false
  495. var SSAimg = null;
  496.     if (document.images) {
  497.         if (!IsIE()) SSAimg = CSFindElement(SSAimgNom,0);
  498.         else SSAimg = document.images[SSAimgNom];
  499. str=SSAimg.src
  500. n=str.length
  501. p=n-6
  502. SSApstr=str.substring(0,p)
  503. SSAnimg=str.substring(p,p+2)
  504. SSAformat=str.substring(p+2,n)
  505. if (SSAformat==".jpg" || SSAformat==".JPG" || SSAformat==".gif" || SSAformat==".GIF")
  506. {}
  507. else
  508. {
  509.  alert("Image extension must be .jpg or .gif (case sensitive). Images must use 2 digit naming starting with 01, 02 ... plus extension")
  510. }
  511. if (SSAnimg.substring(0,1)=="0")
  512. {
  513. SSAnumimg=Number(SSAnimg.substring(1,2))
  514. }
  515. else
  516. {SSAnumimg=Number(SSAnimg)}
  517. SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
  518. }
  519. }
  520. function SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
  521. {
  522. setTimeout("slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)",SSAtemps)
  523. }
  524. function slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)
  525. {
  526. if (SSAfini==1) {
  527. SSAnumimg = SSAnumimg-2
  528. CSSlideShowAutoPause()
  529. }
  530. else
  531. {
  532. SSAmax=SSAmax-1
  533. SSAsuite=SSAnumimg+1
  534.     if (SSAnumimg>SSAmax)
  535.         {
  536.         SSAsuite=1
  537.         if (SSAstop==true) SSAfini=1
  538.         else
  539.         SSAfini=0
  540.         }
  541.     if (SSAnumimg<1) SSAsuite=1
  542. SSAnumimg=SSAsuite
  543. if (SSAsuite<10) {
  544.     SSAaller="0"+SSAsuite
  545.     }
  546.     else SSAaller=SSAsuite
  547. SSAsource=SSApstr+SSAaller+SSAformat
  548. var SSAimg = null;
  549.     if (document.images) {
  550.         if (!IsIE()) SSAimg = CSFindElement(SSAimgNom,0);
  551.         else SSAimg = document.images[SSAimgNom];
  552.         if (SSAimg) SSAimg.src = SSAsource;
  553.     }
  554. SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
  555. }
  556. }
  557. function CSSlideShowAutoPause()
  558. {}
  559. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  560. function CSVisitorCookie(action)
  561. {
  562. resultat = "visitor"
  563. cookiename = action[1]
  564. goUrl = action[2]
  565. var arg = cookiename + "=";
  566.   var alen = arg.length;
  567.   var clen = document.cookie.length;
  568.   var i = 0;
  569.   while (i < clen) {
  570.     var j = i + alen;
  571.        if (document.cookie.substring(i, j) == arg)
  572.      return CSVisitorGetCookie (j);
  573.     i = document.cookie.indexOf(" ", i) + 1;
  574.     if (i == 0) break;
  575.   }
  576.   VisitorSetCookie(cookiename)
  577.   return null;
  578. }
  579. function CSVisitorGetCookie (offset) {
  580.   var endstr = document.cookie.indexOf (";", offset);
  581.   if (endstr == -1)
  582.     endstr = document.cookie.length;
  583.   valeur=unescape(document.cookie.substring(offset, endstr))
  584.   if (valeur==resultat)
  585.   VisitorGotoLink(goUrl)
  586.   else
  587.   VisitorSetCookie(cookiename)
  588. }
  589. function VisitorGotoLink(goUrl) {
  590. location = goUrl
  591. }
  592. function VisitorSetCookie(cookiename)
  593. {
  594. var value="visitor"
  595. var jours=500*24
  596. path="/"
  597. domain=null
  598. var expdate = new Date ();
  599. expdate.setTime (expdate.getTime() + (jours * 60 * 60 * 1000));
  600. SetCookie(cookiename,value,expdate)
  601. }
  602. function SetCookie (cookiename, value) {
  603.   var argv = SetCookie.arguments;
  604.   var argc = SetCookie.arguments.length;
  605.   var expires = (argc > 2) ? argv[2] : null;
  606.   var secure = (argc > 5) ? argv[5] : false;
  607.   document.cookie = cookiename + "=" + escape (value) +
  608.     ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
  609.     ((path == null) ? "" : ("; path=" + path)) +
  610.     ((domain == null) ? "" : ("; domain=" + domain)) +
  611.     ((secure == true) ? "; secure" : "");
  612. }
  613. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  614. function CSDeleteCookie(action)
  615. {
  616. var name=action[1]
  617. var value=action[2]
  618. var jours=-12000
  619. path="/"
  620. domain=null
  621. var expdate = new Date ();
  622. expdate.setTime (expdate.getTime() + (jours * 60 * 60 * 1000));
  623. SetCookie(name,value,expdate)
  624. }
  625. function SetCookie (name, value) {
  626.   var argv = SetCookie.arguments;
  627.   var argc = SetCookie.arguments.length;
  628.   var expires = (argc > 2) ? argv[2] : null;
  629.   var secure = (argc > 5) ? argv[5] : false;
  630.   document.cookie = name + "=" + escape (value) +
  631.     ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
  632.     ((path == null) ? "" : ("; path=" + path)) +
  633.     ((domain == null) ? "" : ("; domain=" + domain)) +
  634.     ((secure == true) ? "; secure" : "");
  635. }
  636. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  637. SSnumimg=1; SSsens2=-1;SSsens3=-1
  638. function CSSlideShow(action)
  639. {
  640. SSmax=action[2]
  641. SSimgNom=action[1]
  642. SSloop=action[4]
  643. SSsens=action[3]
  644. SSpalin=action[5]
  645. var SSimg = null;
  646.     if (document.images) {
  647.         if (!IsIE()) SSimg = CSFindElement(SSimgNom,0);
  648.         else SSimg = document.images[SSimgNom];
  649. SSstr=SSimg.src
  650. SSn=SSstr.length
  651. SSp=SSn-6
  652. SSpstr=SSstr.substring(0,SSp)
  653. SSnimg=SSstr.substring(SSp,SSp+2)
  654. SSformat=SSstr.substring(SSp+2,SSn)
  655. if (SSformat==".jpg" || SSformat==".JPG" || SSformat==".gif" || SSformat==".GIF")
  656. {}
  657. else
  658. {
  659.  alert("Image extension must be .jpg or .gif (case sensitive). Images must be numbered 01, 02 ...")
  660. }
  661. slide(SSmax,SSformat,SSpstr,SSnimg,SSimgNom,SSloop,SSpalin)
  662. }
  663. }
  664. function slide(SSmax,SSformat,SSpstr,SSnimg,SSimgNom,SSloop,SSpalin)
  665. {
  666. if (SSsens2==true) {SSsens=true}
  667. if (SSsens2==false) {SSsens=false}
  668. if (SSsens==true)
  669. {
  670. SSsuite=SSnumimg-1
  671.     if (SSnumimg>SSmax)SSsuite=SSmax
  672.     if (SSnumimg<=1 & SSloop==true & SSpalin!=true) { SSsuite=SSmax }
  673.     if (SSnumimg<=1 & SSloop==true & SSpalin==true) {
  674.         if (SSsens2==-1 & SSsens3==-1) {SSsuite=SSmax;SSsens3=1} else { SSsuite=SSnumimg+1; SSsens2=false }}
  675.     if (SSnumimg<=1 & SSloop!=true & SSpalin!=true) {
  676.         if  (SSsens2==-1 & SSsens3==-1) { SSsuite=SSmax;SSsens3=1 } else {SSsuite=SSnumimg; SSfini()}}
  677. }
  678. else
  679. {
  680. SSmax=SSmax-1
  681. SSsuite=SSnumimg+1
  682.     if (SSnumimg>SSmax & SSloop==true & SSpalin!=true) { SSsuite=1}
  683.     if (SSnumimg>SSmax & SSloop==true & SSpalin==true) {SSsuite=SSnumimg-1; SSsens2=true }
  684.     if (SSnumimg>SSmax & SSloop!=true &  SSpalin!=true) { SSsuite=SSnumimg;SSfini() }
  685.     if (SSnumimg<1) SSsuite=1
  686. }
  687. SSnumimg=SSsuite
  688. if (SSsuite<10) {
  689.     SSaller="0"+SSsuite
  690.     }
  691.     else SSaller=SSsuite
  692. SSsource=SSpstr+SSaller+SSformat
  693. var SSimg = null;
  694.     if (document.images) {
  695.         if (!IsIE()) SSimg = CSFindElement(SSimgNom,0);
  696.         else SSimg = document.images[SSimgNom];
  697.         if (SSimg) SSimg.src = SSsource;
  698.     }
  699. }
  700. function SSfini() {
  701. }
  702. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  703. function CSPAKkillframe() {
  704. if (self.parent.frames.length != 0)
  705. self.parent.location = document.location
  706. }
  707. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  708.         function frameP(action) {
  709.             if(parent.frames.length==0) {
  710.                 var fileName=window.location.href.substring(window.location.href.lastIndexOf("/")+1,window.location.href.length);
  711.                 window.location.href=action[1]+"?"+action[2]+"="+fileName;
  712.             } else {
  713.                 if(top.location.search!="") {
  714.                     var sFrame=top.location.search.substring(1,top.location.search.indexOf("="));
  715.                     if(name==sFrame) {
  716.                         var sName=top.location.search.substring(top.location.search.indexOf("=")+1,top.location.search.length);
  717.                         var fileName=window.location.href.substring(window.location.href.lastIndexOf("/")+1,window.location.href.length);
  718.                         if(fileName!=sName) {
  719.                             location=sName;
  720.                         }
  721.                     }
  722.                 }
  723.             }
  724.         }
  725. // © 1999, Adobe Systems Incorporated. All rights reserved.
  726. var actn1 = "";
  727. var actn2 = "";
  728. var pass=""
  729. var z=23;
  730. var y=28;
  731. iCounter = 3;
  732. if (Array) {
  733.     var f= new Array();
  734.     var K= new Array();
  735.     var base= new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z","a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z")
  736. }
  737. function inc(){
  738. iCounter--
  739. if (iCounter > 0)
  740.     {
  741.     if (confirm("\nPassword is incorrect.\n\n\n\nRetry?"))
  742.         Check()
  743.     }
  744.     else
  745.         alert('Access Denied');
  746. }
  747. function Check(){
  748. pass = prompt("Enter your password.","")
  749. if(pass==null || pass==""){
  750.     alert("You did not enter a password!");
  751.     if(pass==""){
  752.         Check()
  753.     }
  754. }
  755. else{
  756.     var lpass=(pass.length)+1
  757.     for (l=1; l<lpass; l++){
  758.         K[l]=pass.charAt(l)
  759.     }
  760.     var transmit=0;
  761.     for (y=1; y<lpass; y++){
  762.         for(x=0; x<62; x++){
  763.             if (K[y]==base[x]){
  764.                 transmit+=f[x]
  765.                 transmit*=y
  766.             }
  767.         }
  768.     }
  769.     if (transmit==parseInt(actn1))
  770.         go()
  771.     else
  772.         inc()
  773. }
  774. }
  775. function go(){
  776. alert(actn2);
  777. location.href=pass+".html";
  778. }
  779. function PVpassword(action) {
  780. if (Array) {
  781.     actn1 = action[1];
  782.     actn2 = action[2];
  783.     z=23;
  784.     y=28;
  785.     for (x=0; x<10; x++){
  786.         f[x]=x<<9
  787.         f[x]+=23
  788.     }
  789.     for (x=10; x<36; x++){
  790.         y=y<<1
  791.         v= Math.sqrt(y)
  792.         v = parseInt(v,16)
  793.         v+=5
  794.         f[x]=v
  795.         y++
  796.     }
  797.     for (x=36; x<62; x++){
  798.         z=z<<1
  799.         v= Math.sqrt(z)
  800.         v = parseInt(v,16)
  801.         v+=74
  802.         f[x]=v
  803.         z++
  804.     }
  805.     iCounter = 3;
  806.     Check();
  807. }
  808. }
  809. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  810. function WBConfirmLink(action) {
  811.     if (checkIt(action)) {
  812.         if (action[2] != "(Empty Reference!)") {
  813.             if (action[3].length < 1) {
  814.                 parent.location.href=action[2];
  815.             }
  816.             else {
  817.                 parent.frames[action[3]].location.href=action[2];
  818.             }
  819.         }
  820.     }
  821.     return;
  822. }
  823. function checkIt(action) {
  824.     var carryOn = window.confirm(action[1]);
  825.     return carryOn;
  826.     }
  827. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  828. function initArray() {
  829. this.length = initArray.arguments.length;
  830. for (var i = 0; i < this.length; i++)
  831. this[i+1] = initArray.arguments[i];
  832. }
  833. function dailyRedirect(action) {
  834. var dateArray = new
  835. initArray("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
  836. var today = new Date();
  837. var day = dateArray[today.getDay()];
  838. if (today.getDay() == 0) { day = "Sunday"; }
  839. if (day == "Monday" && action[1] != "(Empty Reference!)") window.location = action[1]
  840. if (day == "Tuesday" && action[2] != "(Empty Reference!)") window.location = action[2]
  841. if (day == "Wednesday" && action[3] != "(Empty Reference!)") window.location = action[3]
  842. if (day == "Thursday" && action[4] != "(Empty Reference!)") window.location = action[4]
  843. if (day == "Friday" && action[5] != "(Empty Reference!)") window.location = action[5]
  844. if (day == "Saturday" && action[6] != "(Empty Reference!)") window.location = action[6]
  845. if (day == "Sunday" && action[7] != "(Empty Reference!)") window.location = action[7]
  846. }
  847. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  848. function initIArray() {
  849. this.length = initIArray.arguments.length;
  850. for (var i = 0; i < this.length; i++)
  851. this[i+1] = initIArray.arguments[i];
  852. }
  853. function dailyImageURL(action) {
  854. var dateArray = new
  855. initIArray("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
  856. var today = new Date();
  857. var day = dateArray[today.getDay()];
  858. if (today.getDay() == 0) { day = "Sunday"; }
  859. var img = null;
  860. if (document.images) {
  861.     if (!IsIE()) img = CSFindElement(action[1],0);
  862.     else img = document.images[action[1]];
  863.         if (img) {
  864.             if (day == "Monday" && action[2] != "(Empty Reference!)") img.src = action[2]
  865.             if (day == "Tuesday" && action[3] != "(Empty Reference!)") img.src = action[3]
  866.             if (day == "Wednesday" && action[4] != "(Empty Reference!)") img.src = action[4]
  867.             if (day == "Thursday" && action[5] != "(Empty Reference!)") img.src = action[5]
  868.             if (day == "Friday" && action[6] != "(Empty Reference!)") img.src = action[6]
  869.             if (day == "Saturday" && action[7] != "(Empty Reference!)") img.src = action[7]
  870.             if (day == "Sunday" && action[8] != "(Empty Reference!)") img.src = action[8]
  871.         }
  872. }
  873. }
  874. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  875. function timeRedirect(action) {
  876. var now = new Date();
  877. var hours = now.getHours();
  878. var timeValue = action[1];
  879. if (timeValue >= 12) { timeValue = timeValue - 12; } // deals with 24-hour time
  880. if (action[2] == true) { timeValue += 12; } // deals with PM times
  881. if (hours < timeValue && action[4] != "(Empty Reference!)" && action[3] == true) {
  882. window.location = action[4]; }
  883. if (hours >= timeValue && action[6] != "(Empty Reference!)" && action[5] == true) {
  884. window.location = action[6]; }
  885. }
  886. // Script copyright 1999, Adobe Systems Incorporated. All rights reserved.
  887. function CSPakRemote(action) {
  888.     if (TRversion()) {
  889.         if (action[2].length < 1) {
  890.             opener.location.href=action[1];
  891.         }
  892.         else {
  893.             opener.parent.frames[action[2]].location.href=action[1];
  894.         }
  895.     }
  896.     return;
  897. }
  898. function TRversion() {
  899.     return (navigator.appName.indexOf("Netscape") >= 0 && parseInt(navigator.appVersion.charAt(0)) >= 3)
  900.           || (navigator.appName.indexOf("Explorer") >= 0 && parseInt(navigator.appVersion.charAt(0)) >= 3);
  901. }
  902. CSImages=new Array();
  903. function CSPreloadImage(action) {
  904.     if (document.images) { CSImages[CSImages.length]=new Image(); CSImages[CSImages.length-1].src=action[1]; }
  905. }
  906. function CSSetImageURL(action) {
  907.     var img = null;
  908.     if (document.images) {
  909.         if (!IsIE()) img = CSFindElement(action[1],0);
  910.         else img = document.images[action[1]];
  911.         if (img) img.src = action[2];
  912.     }
  913. }
  914. function CSRandomImg(action) {
  915.     if (document.images) {
  916.         var img = null;
  917.         var whichone = Math.floor((Math.random() * 10)) % 3
  918.         if(!IsIE()) img = CSFindElement(action[1],0);
  919.         else img = document.images[action[1]];
  920.         img.src = action[whichone+2]
  921.     }
  922.  }
  923. function CSGoBack1() { history.back() }
  924. function CSGotoLink(action) {
  925.     if (action[2].length) {
  926.         var hasFrame=false;
  927.         for(i=0;i<parent.frames.length;i++) { if (parent.frames[i].name==action[2]) { hasFrame=true; break;}}
  928.         if (hasFrame==true)
  929.             parent.frames[action[2]].location = action[1];
  930.         else
  931.             window.open (action[1],action[2],"");
  932.     }
  933.     else location = action[1];
  934. }
  935. function CSOpenWindow(action) {
  936.     var wf = "";
  937.     wf = wf + "width=" + action[3];
  938.     wf = wf + ",height=" + action[4];
  939.     wf = wf + ",resizable=" + (action[5] ? "yes" : "no");
  940.     wf = wf + ",scrollbars=" + (action[6] ? "yes" : "no");
  941.     wf = wf + ",menubar=" + (action[7] ? "yes" : "no");
  942.     wf = wf + ",toolbar=" + (action[8] ? "yes" : "no");
  943.     wf = wf + ",directories=" + (action[9] ? "yes" : "no");
  944.     wf = wf + ",location=" + (action[10] ? "yes" : "no");
  945.     wf = wf + ",status=" + (action[11] ? "yes" : "no");
  946.     window.open(action[1],action[2],wf);
  947. }
  948. function CSHistoryGo(action) { history.go(action[1]); }
  949. function CSDocWrite(action) { document.write(action[1]); }
  950. function CSOpenAlert(action) { alert(action[1]); }
  951. function CSSetStatus(action) { self.status = action[1]; }
  952. function CSStopAll(action) { CSStopComplete (); }
  953. function CSStartWipe (action)
  954. {
  955.     var el=CSCreateTransElement (action[1], action[2]);
  956.     if (el==null) return;
  957.     var dir=action[3];
  958.     if (dir=="_inLeft") {el.steps=el.clipRect.width/el.maxValue; el.modus="in";}
  959.     else if (dir=="_inRight") {el.steps=el.clipRect.width/el.maxValue; el.modus="in";}
  960.     else if (dir=="_outLeft") {el.steps=el.clipRect.width/el.maxValue; el.modus="out";}
  961.     else if (dir=="_outRight") {el.steps=el.clipRect.width/el.maxValue; el.modus="out";}
  962.     else if (dir=="_inTop") {el.steps=el.clipRect.height/el.maxValue; el.modus="in";}
  963.     else if (dir=="_inBottom") {el.steps=el.clipRect.height/el.maxValue; el.modus="in";}
  964.     else if (dir=="_outTop") {el.steps=el.clipRect.height/el.maxValue; el.modus="out";}
  965.     else if (dir=="_outBottom") {el.steps=el.clipRect.height/el.maxValue; el.modus="out";}
  966.     else if (dir=="_inCenter") {el.HSteps=el.clipRect.width/el.maxValue; el.VSteps=el.clipRect.height/el.maxValue; el.modus="in";}
  967.     else if (dir=="_outCenter") {el.HSteps=el.clipRect.width/el.maxValue; el.VSteps=el.clipRect.height/el.maxValue; el.modus="out";}
  968.     if (el.modus=="") return;
  969.     el.currentValue=0;
  970.     el.glDir=action[3];
  971.     CSStartFunction(CSDoWipe,el);
  972. }
  973. function CSDoWipe (info)
  974. {
  975.     var el = info.data;
  976.     if (el==null) return false;
  977.     if (el.currentValue==el.maxValue) { CSFinishWipe(el); return false; }
  978.     var r = new CSRect(el.clipRect.left,el.clipRect.top,el.clipRect.width,el.clipRect.height);
  979.     var dir=el.glDir;
  980.     if (dir=="_inLeft") {r.left=r.width-el.currentValue*el.steps;}
  981.     else if (dir=="_inTop") {r.top=r.height-el.currentValue*el.steps;}
  982.     else if (dir=="_inRight") {r.width=el.currentValue*el.steps;}
  983.     else if (dir=="_inBottom") {r.height=el.currentValue*el.steps;}
  984.     else if (dir=="_outLeft") {r.width=r.width-el.currentValue*el.steps;}
  985.     else if (dir=="_outTop") {r.height=r.height-el.currentValue*el.steps;}
  986.     else if (dir=="_outRight") {r.left=el.currentValue*el.steps;}
  987.     else if (dir=="_outBottom") {r.top=el.currentValue*el.steps;}
  988.     else if (dir=="_inCenter") {r=CSCenterRectIn(el,r);}
  989.     else if (dir=="_outCenter") {r=CSCenterRectOut(el,r);}
  990.     CSSetLayerClip(el,r);
  991.     el.currentValue+=1;
  992.     return true;
  993. }
  994. function CSFinishWipe (el)
  995. {
  996.     if (el.modus=="in") CSSetLayerClip(el,el.clipRect);
  997.     else {
  998.         el.clipRect=new CSRect(0,0,el.width,el.height);
  999.         CSSetLayerClip(el,el.clipRect);
  1000.         CSSetStyleVis(el.layer,0);
  1001.     }
  1002.     CSDisposeTransElement(el);
  1003. }
  1004. function CSCenterRectIn(el,r)
  1005. {
  1006.     var hValue= el.currentValue*el.HSteps/2;
  1007.     var vValue= el.currentValue*el.VSteps/2;
  1008.     r.left=Math.round(r.left+r.width/2-hValue);
  1009.     r.top=Math.round(r.top+r.height/2-vValue);
  1010.     r.width=Math.round(hValue*2);
  1011.     r.height=Math.round(vValue*2);
  1012.     return r;
  1013. }
  1014. function CSCenterRectOut(el,r)
  1015. {
  1016.     var hValue= el.currentValue*el.HSteps/2;
  1017.     var vValue= el.currentValue*el.VSteps/2;
  1018.     r.left+=Math.round(hValue);
  1019.     r.top+=Math.round(vValue);
  1020.     r.width-=Math.round(hValue*2);
  1021.     r.height-=Math.round(vValue*2);
  1022.     return r;
  1023. }
  1024. function CSFlipMove(action) {
  1025.     if (action[1] == '') return;
  1026.     var curX = CSGetStylePos(action[1],0); var curY = CSGetStylePos(action[1],1);
  1027.     var x1 = action[2][0];
  1028.     var y1 = action[2][1];
  1029.     if ((x1 != curX) || (y1 != curY)) CSSlideLayer(action[1],action[2],action[4],action[5]);
  1030.     else CSSlideLayer(action[1],action[3],action[4],action[5]);
  1031. }
  1032. var gCSIEDragObject = null;
  1033. function CSSetupDrag (layerName) {
  1034.     this.x = 0; this.y = 0;
  1035.     if (IsIE()) {
  1036.         this.canDrag=true;
  1037.         this.layerObj=document.all.tags("div")[layerName];
  1038.         this.layerObj.dragObj = this;
  1039.         document.ondragstart = CSIEStartDrag;
  1040.         document.onmousedown = CSIEMouseDown;
  1041.         document.onmouseup = CSIEStopDrag;
  1042.     } else {
  1043.         this.layer=CSNSStyl(layerName);this.onmousemove=null;
  1044.         this.layer.document.theLayer=this;
  1045.         this.layer.document.captureEvents(Event.MOUSEDOWN);
  1046.         this.layer.document.onmousedown=CSNSStartDrag;
  1047.         this.layer.document.onmouseup=CSNSStopDrag;
  1048.     }
  1049. }
  1050. function CSNSStartDrag (ev) {
  1051.     var clickInMe = false;
  1052.     if (ev.target != this) {
  1053.         for (var i=0;i<this.images.length;i++) {
  1054.             if (this.images[i] == ev.target) { clickInMe = true; break;}
  1055.             }
  1056.         }
  1057.     else clickInMe = true;
  1058.     if (clickInMe)
  1059.         {
  1060.         this.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);
  1061.         this.onmousemove=CSNSDoDrag;
  1062.         this.theLayer.x= ev.pageX;
  1063.         this.theLayer.y= ev.pageY;
  1064.         this.routeEvent(ev);
  1065.         return false;
  1066.         }
  1067.    this.onmousemove=null;this.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);
  1068.     this.routeEvent(ev);
  1069.    return true;
  1070. }
  1071. function CSNSStopDrag (ev) {
  1072.    this.onmousemove=null;this.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);return false;
  1073. }
  1074. function CSNSDoDrag (ev) {
  1075.     this.theLayer.layer.moveBy(ev.pageX-this.theLayer.x, ev.pageY-this.theLayer.y);
  1076.     this.theLayer.x = ev.pageX;
  1077.     this.theLayer.y = ev.pageY;
  1078.     this.routeEvent(ev);
  1079. }
  1080. function CSIEStartDrag () {
  1081.     if(gCSIEDragObject != null && (gCSIEDragObject.tagName==event.srcElement.tagName))
  1082.         event.returnValue=false;
  1083. }
  1084. function CSIEStopDrag () { gCSIEDragObject=null; document.onmousemove=null; }
  1085. function CSIEMouseDown () {
  1086.     if(event.button==1) {
  1087.         dragLayer = event.srcElement;
  1088.         while (dragLayer!=null)
  1089.             {
  1090.             if ((dragLayer.dragObj == null) && (dragLayer.tagName == "DIV"))
  1091.                 break;
  1092.             if (dragLayer.dragObj != null)
  1093.                 break;
  1094.             dragLayer=dragLayer.parentElement;
  1095.             }
  1096.         if (dragLayer == null) return;
  1097.         if (dragLayer.dragObj!=null && dragLayer.dragObj.canDrag) {
  1098.             gCSIEDragObject = dragLayer;
  1099.             gCSIEDragObject.dragObj.x=event.clientX;
  1100.             gCSIEDragObject.dragObj.y=event.clientY;
  1101.             document.onmousemove = CSIEMouseMove;
  1102.         }
  1103.     }
  1104. }
  1105. function CSIEMouseMove () {
  1106.     gCSIEDragObject.dragObj.layerObj.style.pixelLeft+=(event.clientX-gCSIEDragObject.dragObj.x);
  1107.     gCSIEDragObject.dragObj.layerObj.style.pixelTop+=(event.clientY-gCSIEDragObject.dragObj.y);
  1108.     gCSIEDragObject.dragObj.x=event.clientX;
  1109.     gCSIEDragObject.dragObj.y=event.clientY;
  1110.     event.returnValue = false;
  1111.     event.cancelBubble = true;
  1112. }
  1113. var gDragArray = new Array();
  1114. function CSDrag(action) { gDragArray[gDragArray.length] = new CSSetupDrag(action[1]); }
  1115. function CSShowHide(action) {
  1116.     if (action[1] == '') return;
  1117.     var type=action[2];
  1118.     if(type==0) CSSetStyleVis(action[1],0);
  1119.     else if(type==1) CSSetStyleVis(action[1],1);
  1120.     else if(type==2) {
  1121.         if (CSGetStyleVis(action[1]) == 0) CSSetStyleVis(action[1],1);
  1122.         else CSSetStyleVis(action[1],0);
  1123.     }
  1124. }
  1125. function CSPlayScene(action) { CSStartSeq (action[1]); }
  1126. function CSStopScene(action) { CSStopFunction (action[1]); }
  1127. var CSLastSound = null
  1128. function CSPlaySound(action) {
  1129.     if (eval('document.'+action[1])!=null) {
  1130.         if (CSLastSound != null && CSLastSound != action[1]) eval ('document.' + CSLastSound + '.stop()');
  1131.         CSLastSound = action[1]
  1132.         if (window.navigator.userAgent.indexOf("MSIE") > 0) eval ('document.' + CSLastSound + '.run()');
  1133.         else eval ('document.' + CSLastSound + '.play(true)');
  1134.     } else { alert ("The current Plug-In cannot be controlled by JavaScript. Please try using LiveAudio or a compatible Plug-In!"); }
  1135. }
  1136. function CSStopSound (action) {if (eval('document.'+action[1])!=null) { eval ('document.' + action[1] + '.stop()');}}
  1137. function CSMoveTo(action) { CSSlideLayer(action[1],action[2],action[3],action[4]); }
  1138. function CSMoveBy(action)
  1139. {
  1140.     x = CSGetStylePos(action[1], 0);
  1141.     y = CSGetStylePos(action[1], 1);
  1142.     x += parseInt(action[2]);
  1143.     y += parseInt(action[3]);
  1144.     x = CSSetStylePos(action[1], 0, x);
  1145.     y = CSSetStylePos(action[1], 1, y);
  1146. }
  1147. function CSScrollLeft(action){
  1148.     if(navigator.appVersion.charAt(0) >=4) {
  1149.         var container = 0
  1150.         if (action[2] > 0)        {
  1151.             while (container < action[1]) {
  1152.                    window.scrollBy(-action[2],0);
  1153.                    container = container + action[2];
  1154.             }
  1155.           }
  1156.     }
  1157. }
  1158. function CSScrollUp(action){
  1159.     if(navigator.appVersion.charAt(0) >=4) {
  1160.         var container = 0
  1161.         if (action[2] > 0)        {
  1162.             while (container < action[1]) {
  1163.                    window.scrollBy(0,-action[2]);
  1164.                    container = container + action[2];
  1165.             }
  1166.           }
  1167.     }
  1168. }
  1169. function CSScrollRight(action){
  1170.     if(navigator.appVersion.charAt(0) >=4) {
  1171.         var container = 0
  1172.         if (action[2] > 0)        {
  1173.             while (container < action[1]) {
  1174.                    window.scrollBy(action[2],0);
  1175.                    container = container + action[2];
  1176.             }
  1177.           }
  1178.     }
  1179. }
  1180. function CSScrollDown(action){
  1181.     if(navigator.appVersion.charAt(0) >=4) {
  1182.         var container = 0
  1183.         if (action[2] > 0)        {
  1184.             while (container < action[1]) {
  1185.                    window.scrollBy(0,action[2]);
  1186.                    container = container + action[2];
  1187.             }
  1188.           }
  1189.     }
  1190. }
  1191. function CSResizeWindow(action) {
  1192.     if(navigator.appVersion.charAt(0) >=4) { window.resizeTo (action[1],action[2]) }
  1193. }
  1194. function CSSetBackColor(action) { document.bgColor = action[1]; }
  1195. function CSFixFct() {
  1196.     var d = document; var w = window;
  1197.     if (d.cs.csFix.w != w.innerWidth || d.cs.csFix.h != w.innerHeight) {
  1198.         d.location = d.location; }
  1199. }
  1200. function CSNSFix(action) {
  1201.     var d = document; var w = window;
  1202.     if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
  1203.         if (typeof d.cs == 'undefined') {
  1204.             d.cs = new Object;
  1205.             d.cs.csFix = new Object;
  1206.         } else if (CSIsFrame (w) == true) CSFixFct();
  1207.         d.cs.csFix.w = w.innerWidth;
  1208.         d.cs.csFix.h = w.innerHeight;
  1209.         window.onresize = CSFixFct;
  1210.       }
  1211. }
  1212. function CSIsFrame (window) {
  1213.     var rootWindow = window.parent;
  1214.     if (rootWindow == 'undefined') return false;
  1215.     for (i = 0; i < rootWindow.frames.length; i++)
  1216.         if (window == rootWindow.frames[i]) return true;
  1217.     return false;
  1218. }
  1219. function CSCallAction(action)
  1220. {
  1221.     CSAction(new Array(action[1]));
  1222. }
  1223. function CSConditionAction(action) {
  1224.     if (action[1]) {
  1225.         if (CSAction(new Array(action[1])) == true) {
  1226.             if (action[2]) CSAction(new Array(action[2]));
  1227.         } else if (action[3]) CSAction(new Array(action[3]));
  1228.     }
  1229. }
  1230. function CSCallFunction(action)
  1231. {
  1232.     var str = action[1];
  1233.     str += "(";
  1234.     str += action[2];
  1235.     str += ");"
  1236.     return eval(str);
  1237. }
  1238. function CSActionGroup (action) {
  1239.     for(var i=1;i<action.length;i++) { CSAction(new Array(action[i])); }
  1240. }
  1241. CSCurrentPressedKey = -1;
  1242. function CSKeyPress(ev) {
  1243.     var code;
  1244.     if(IsIE()) CSCurrentPressedKey = event.keyCode;
  1245.     else CSCurrentPressedKey = ev.which;
  1246. }
  1247. document.onkeypress    = CSKeyPress;
  1248. function CSKeyCompare(condition)
  1249. {
  1250.     var eq = (condition[1] == CSCurrentPressedKey);
  1251.     if(eq)
  1252.         CSCurrentPressedKey = -1;
  1253.     return eq;
  1254. }
  1255. function CSIdleObject (action) {
  1256.     this.conditionAction = action[2];
  1257.     this.trueAction = action[3];
  1258.     this.falseAction = action[4];
  1259.     this.exitIdleIfTrue = action[1];
  1260.     this.lastState = false;
  1261. }
  1262. function CSIdleAction(action) {
  1263.     idleObj = new CSIdleObject (action);
  1264.     CSStartFunction (CSDoIdle,idleObj);
  1265. }
  1266. function CSDoIdle (param) {
  1267.     idleObject=param.data;
  1268.     if (idleObject.conditionAction) {
  1269.         gCurrentIdleObject = idleObject;
  1270.         var result = CSAction(new Array(idleObject.conditionAction));
  1271.         if (result == true && idleObject.lastState==false) {
  1272.             idleObject.lastState = result;
  1273.             if (idleObject.trueAction) {
  1274.                 CSAction(new Array(idleObject.trueAction));
  1275.                 if (idleObject.exitIdleIfTrue == true) return false;
  1276.             }
  1277.         } else if (result == false && idleObject.lastState == true) {
  1278.             idleObject.lastState = false;
  1279.             if (idleObject.falseAction) {
  1280.                 CSAction(new Array(idleObject.falseAction));
  1281.             }
  1282.         }
  1283.     }
  1284.     return true;
  1285. }
  1286. function CSTimeout (condition) {
  1287.     var result = false;
  1288.     if (typeof (gCurrentIdleObject) == "undefined")    return result;
  1289.     if (gCurrentIdleObject.lastTime) {
  1290.         var t=new Date();
  1291.         if (t.getTime() >= gCurrentIdleObject.lastTime) {
  1292.             if (t.getTime() >= gCurrentIdleObject.nextTime) {
  1293.                 gCurrentIdleObject.lastTime = t.getTime() + condition[1]*1000;
  1294.                 gCurrentIdleObject.nextTime = gCurrentIdleObject.lastTime + condition[1]*1000;
  1295.                 return false;
  1296.             }
  1297.             return true;
  1298.         }
  1299.     } else {
  1300.         var t=new Date();
  1301.         gCurrentIdleObject.lastTime = t.getTime() + condition[1]*1000;
  1302.         gCurrentIdleObject.nextTime = gCurrentIdleObject.lastTime + condition[1]*1000;
  1303.     }
  1304.     return result;
  1305. }
  1306. function CSLayerIntersect (condition)
  1307. {
  1308.     var l1,t1,r1,b1,l2,t2,r2,b2;
  1309.     if (IsIE()) {
  1310.         var layer1=document.all.tags("div")[condition[1]];
  1311.         var layer2=document.all.tags("div")[condition[2]];
  1312.         l1=layer1.style.pixelLeft; t1=layer1.style.pixelTop; r1=layer1.offsetWidth+l1; b1=layer1.offsetHeight+t1;
  1313.         l2=layer2.style.pixelLeft; t2=layer2.style.pixelTop; r2=layer2.offsetWidth+l2; b2=layer2.offsetHeight+t2;
  1314.     } else {
  1315.         var layer1=CSNSStyl(condition[1]);
  1316.         var layer2=CSNSStyl(condition[2]);
  1317.         l1=layer1.x; t1=layer1.y; r1=layer1.clip.width+l1; b1=layer1.clip.height+t1;
  1318.         l2=layer2.x; t2=layer2.y; r2=layer2.clip.width+l2; b2=layer2.clip.height+t2;
  1319.     }
  1320.     var w = (r1 < r2 ? r1 : r2) - (l1 > l2 ? l1 : l2)
  1321.     var h = (b1 < b2 ? b1 : b2) - (t1 > t2 ? t1 : t2)
  1322.     return ((w >= 0) && (h >= 0));
  1323. }// EOF