Lines Matching refs:pg
1210 var pg = document.createElement('div');
1211 pg.id = "StartupProgress";
1212 pg.style.position = 'absolute';
1213 pg.style.left = 0 + 'px';
1214 pg.style.top = 0 + 'px';
1215 pg.style.width = 100 + '%';
1216 pg.style.height = 100 + '%';
1217 pg.style.margin = 0 + 'px';
1218 pg.style.padding = 0 + 'px';
1220 pg.style.filter = "alpha(opacity=100)";
1222 pg.style.opacity = 1.0;
1224 pg.style.zIndex = 9999;
1225 pg.style.backgroundColor="rgb(255, 255, 255)";
1226 pg.style.textAlign = "center";
1227 pg.style.verticalAlign = "middle";
1228 pg.style.backgroundPosition="center center";
1229 pg.style.backgroundRepeat="no-repeat";
1230 pg.style.backgroundImage="url("+s5Path+"ui/graphic_support/progress.gif)";
1231 document.getElementsByTagName("body")[0].insertBefore(pg,obj);
1374 var pg = document.createElement('div');
1375 pg.id = "GoodBy";
1376 pg.style.position = 'absolute';
1377 pg.style.left = 0 + 'px';
1378 pg.style.top = 0 + 'px';
1379 pg.style.width = 100 + '%';
1380 pg.style.height = 100 + '%';
1381 pg.style.margin = 0 + 'px';
1382 pg.style.padding = 0 + 'px';
1384 pg.style.filter = "alpha(opacity=0)";
1386 pg.style.opacity = 0.0;
1388 pg.style.zIndex = 9999;
1389 pg.style.backgroundColor="rgb(255, 255, 255)";
1390 pg.style.textAlign = "center";
1391 pg.style.verticalAlign = "middle";
1392 pg.style.backgroundPosition="center center";
1393 pg.style.backgroundRepeat="no-repeat";
1394 pg.style.backgroundImage="url("+s5Path+"ui/graphic_support/finish.gif)";
1395 document.getElementsByTagName("body")[0].appendChild(pg);
2791 var pg = document.createElement('div');
2792 pg.id = "HelpReq";
2793 if (pg.addEventListener) {
2794 pg.addEventListener("onclick",dumpHelpReq,false);
2795 } else if (pg.attachEvent) {
2796 pg.attachEvent("onclick",dumpHelpReq);
2798 pg.style.position = 'absolute';
2799 pg.style.left = 0 + 'px';
2800 pg.style.top = 0 + 'px';
2801 pg.style.width = 100 + '%';
2802 pg.style.height = 100 + '%';
2803 pg.style.margin = 0 + 'px';
2804 pg.style.padding = 0 + 'px';
2806 pg.style.filter = "alpha(opacity=90)";
2808 pg.style.opacity = 0.9;
2810 pg.style.zIndex = 9999;
2811 pg.style.backgroundColor="rgb(64,64,64)";
2812 pg.style.textAlign = "center";
2813 pg.style.verticalAlign = "middle";
2814 pg.style.backgroundPosition="center center";
2815 pg.style.backgroundRepeat="no-repeat";
2816 pg.style.backgroundImage="url("+s5Path+"ui/graphic_support/help.jpg)";
2817 document.getElementsByTagName("body")[0].insertBefore(pg,obj);