home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 March / Chip_2000-03_cd.bin / tema / Forrest / js / fg.js < prev    next >
Text File  |  1999-07-23  |  2KB  |  74 lines

  1. // dynamic menus for Forrest Gump Multimedia website, by Zuf <zuf@forrest.cz>
  2.  
  3.  
  4.  
  5. // function to init the menu
  6. function init() {
  7.    if (isMenu) {
  8.       fntCol = "#000000";
  9.       fntBold = false;
  10.       fntItal = false;
  11.       backCol = "#ffffff";
  12.       overCol = "#ffffcc";
  13.       overFnt = "#000000";
  14.       fntSiz = 8;
  15.       fntFam = "sans-serif";
  16.       menuWidth = 120;
  17.       borWid = 1;
  18.       borCol = "#000000";
  19.       borSty = "solid";
  20.       itemPad = 3;
  21.       separator = 1;
  22.       separatorCol = "#000000";
  23.       imgSrc = "images/tri.gif";
  24.       imgSiz = 10;
  25.  
  26.       childOffset = 5;
  27.       childOverlap = null;
  28.       perCentOver = 30;
  29.  
  30.       secondsVisible = .3;
  31.  
  32.       isFrames = false;
  33.       navFrLoc = "left";
  34.       mainFrName = "main";
  35.   }
  36. }
  37.  
  38. // function to write to the status
  39. function msg(msg) {
  40.    window.status=msg;
  41. }
  42.  
  43. function bg() {
  44. document.write("<div id='backg'>");
  45. document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
  46. document.write("<tr><td align='center'>");
  47. document.write("<table border='0' cellspacing='0' cellpadding='0' width='640'>");
  48. document.write("<tr>");
  49. document.write("<td width=68><br></td>");
  50. document.write("<td width=67><br></td>");
  51. document.write("<td width=505>");
  52. document.write("<img src='../images/back_fg.jpg' width=443 height=386 border='0'>");
  53. document.write("</td></tr></table>");
  54. document.write("</td></tr></table>");
  55. document.write("</div>");
  56. }
  57.  
  58. function bg2() {
  59. document.write("<div id='backg'>");
  60. document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
  61. document.write("<tr><td align='center'>");
  62. document.write("<table border='0' cellspacing='0' cellpadding='0' width='665'>");
  63. document.write("<tr>");
  64. document.write("<td width=164 align=right>");
  65. document.write("<img src='../images/back.jpg' width=161 height=600 border=0></td>");
  66. document.write("<td width=501><br></td>");
  67. document.write("</td></tr></table>");
  68. document.write("</td></tr></table>");
  69. document.write("</div>");
  70. }
  71.  
  72.  
  73.  
  74.