1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| document.write('<html>\n');
document.write('<head>\n');
document.write('<title>Page de Test</title>\n');
document.write('<link rel="stylesheet" type="text/css" href="styles3.css" title="mainstyle">\n');
document.write('<script language="JavaScript" src="source/dragiframe.js"></script>\n');
document.write('</head>\n');
document.write('<body style="background-color:transparent; z-index:100" onLoad="addHandle(document.getElementById(\'ggtb_startbar_1\'), window);\">\n');
document.write('<table id="'+ ggtb_Toolbar_Name +'" border="0" height="26" cellpadding="0" cellspacing="0">\n');
document.write('<tr>\n');
document.write('<td id="ggtb_startbar_1" width="15" style="background-image:url('+ ggtb_Startbar_Path +'); background-repeat:no-repeat; vertical-align:bottom;"></td>\n');
document.write('<td>\n');
document.write('<table id="ggtb_background_1" border="0" height="'+ ggtb_Empty_Button_y+ '" cellpadding="1" cellspacing="0"><tr>\n');
for (var i = 1; i<= num_button; i++){
document.write('<td class="ggtb_background_1" style="background-color:'+ ggtb_Background_Color +';" width="'+ ggtb_Empty_Button_x +'"><img src="'+ ggtb_Empty_Button_Path +'" alt="bouton vide" style=" vertical-align:top" /></td>\n');
}
document.write('</tr></table>\n');
document.write('</td>\n');
document.write('<td id="ggtb_closebar_1" width="'+ ggtb_Closebar_x +'" ><img src="'+ ggtb_Closebar_Path +'" width="'+ ggtb_Closebar_x +'" alt="curseur de fermeture" onclick="onoffdisplay(ggtb_background_1,1);"/></td>\n');
document.write('</tr>\n');
document.write('</table>\n');
document.write('</body>\n');
document.write('</html>\n'); |
Partager