","g");
aInner=aInner.replace(br,"
");a=a.replace(br,"
");
if (a.toLowerCase()==aInner.toLowerCase()) {
return true;
} else {
return false;
}
} else {
return false;
}
}
function isDisplayed(parent)
{
var col = parent.style.color.replace(/\s+/g,'');
if (col.toLowerCase().substring(0,3)!="rgb") col=convertToRGB(col);
while(parent!=document)
{
if (isIE) {
var testCol=parent.currentStyle['backgroundColor'];
if (testCol.toLowerCase().substring(0,3)!="rgb") testCol=convertToRGB(testCol);
if(parent.currentStyle['display'] == "none" || parent.currentStyle['visibility']=='hidden' || testCol==col)
return false
} else {
var docD=document.defaultView.getComputedStyle(parent,null);
if(docD.getPropertyValue('display')== "none" || docD.getPropertyValue('visibility')=='hidden' || docD.getPropertyValue('background-color')==col)
return false
}
parent = parent.parentNode
}
return true;
}
function checkNodesColor(nodes,color) {
for(var i = 0 ; i < nodes.length; i++) {
if (nodes[i].nodeName=='A') {
if (isIE) {
return ((nodes[i].currentStyle.color==color) ? true:false);
} else {
var col = document.defaultView.getComputedStyle(nodes[i],null).getPropertyValue('color');
return ((col==color) ? true:false);
}
}
}
}
function convertToRGB(color) {
return 'rgb('+HexToR(color)+','+HexToG(color)+','+HexToB(color)+')';
}
function cutHex(h) {return (h.charAt(0)=="#") ? h.substring(1,7):h}
function HexToR(h) {return parseInt((cutHex(h)).substring(0,2),16)}
function HexToG(h) {return parseInt((cutHex(h)).substring(2,4),16)}
function HexToB(h) {return parseInt((cutHex(h)).substring(4,6),16)}