inherit
16846
0
Nov 19, 2012 15:20:20 GMT -8
Chris
3,036
December 2003
cddude
|
Post by Chris on Jun 24, 2006 18:23:02 GMT -8
<script type="text/Javascript"> // Gradients in Popups by CD // Do not redistribute without permission
popupGrad = "URL OF GRADIENT";
function popWindow(x){ xWin = window.open("index.cgi?action="+x, "popWindow2", "directories=0, location=0, menubar=0, resizable=1, scrollbars=1, status=1, toolbar=0, top=100, left=100, width=400, height=275"); xWin.focus(); if(!document.all) xWin.window.onload = function(){ xWin.document.styleSheets[0].insertRule(".popuptitlebg { background-image: url("+popupGrad+") }",0); } else setTimeout("ieCheck()",500); }
function ieCheck(){ if(xWin.document.getElementsByTagName("TD").length > 2) xWin.document.styleSheets[0].addRule(".popuptitlebg","background-image: url("+popupGrad+")"); else setTimeout("ieCheck()",500); } </script> Global Footers. Thanks to Cali for helping make it work in IE.
|
|