home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2004 March / PCWMAR04.iso / Sponsors / Xara / graphics / cannister_button.js < prev    next >
Encoding:
Text File  |  2002-10-10  |  2.0 KB  |  72 lines

  1. var clicked=""
  2. var gtype=".gif"
  3. var selstate="_over"
  4. if (typeof(loc)=="undefined" || loc==""){
  5.     var loc=""
  6.     if (document.body){
  7.         var tt = document.body.innerHTML.toLowerCase();
  8.         var last = tt.indexOf("cannister_button.js\"");
  9.         if (last>0){
  10.             var first = tt.lastIndexOf("\"", last);
  11.             if (first>0 && first<last) loc = document.body.innerHTML.substr(first+1,last-first-1);
  12.         }
  13.     }
  14. }
  15.  
  16. document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr>");
  17. tr(false);
  18. writeButton(loc+"../","cannister_button.html","cannister_button_b1",125,23,"Button Text","",0);
  19. tr(true);
  20. document.write("</tr></table>")
  21. loc="";
  22.  
  23. function tr(b){}
  24.  
  25. function turn_over(name) {
  26.     if (document.images != null && clicked != name) {
  27.         document[name].src = document[name+"_over"].src;
  28.     }
  29. }
  30.  
  31. function turn_off(name) {
  32.     if (document.images != null && clicked != name) {
  33.         document[name].src = document[name+"_off"].src;
  34.     }
  35. }
  36.  
  37. function reg(gname,name)
  38. {
  39. if (document.images)
  40.     {
  41.     document[name+"_off"] = new Image();
  42.     document[name+"_off"].src = loc+gname+gtype;
  43.     document[name+"_over"] = new Image();
  44.     document[name+"_over"].src = loc+gname+"_over"+gtype;
  45.     }
  46. }
  47.  
  48. function evs(name){ return " onmouseover=\"turn_over('"+ name + "')\" onmouseout=\"turn_off('"+ name + "')\""}
  49.  
  50. function writeButton(urld, url, name, w, h, alt, target, hsp)
  51. {
  52.     gname = name;
  53.     while(typeof(document[name])!="undefined") name += "x";
  54.     reg(gname, name);
  55.     tr(true);
  56.     document.write("<td>");
  57.     if (alt != "") alt = " alt=\"" + alt + "\"";
  58.     if (target != "") target = " target=\"" + target + "\"";
  59.     if (w > 0) w = " width=\""+w+"\""; else w = "";
  60.     if (h > 0) h = " height=\""+h+"\""; else h = "";    
  61.     if (url != "") url = " href=\"" + urld + url + "\"";
  62.     
  63.     document.write("<a " + url + evs(name) + target + ">");    
  64.     
  65.     if (hsp == -1) hsp =" align=\"right\"";
  66.     else if (hsp > 0) hsp = " hspace=\""+hsp+"\"";
  67.     else hsp = "";
  68.     
  69.     document.write("<img src=\""+loc+gname+gtype+"\" name=\"" + name + "\"" + w + h + alt + hsp + " border=\"0\" /></a></td>");
  70.     tr(false);
  71. }
  72.