
function GrabStyles(document_obj){var styles={inline:[],linked:[]},isIE=/msie/i.test(navigator.userAgent)&&!/opera/i.test(navigator.userAgent),css_rules_key=(isIE?'rules':'cssRules'),owner_node_key=(isIE?'owningElement':'ownerNode');if(typeof(document_obj)!='object'){return styles;}
for(var i=0;i<document_obj.styleSheets.length;i++){var owner_node=document_obj.styleSheets[i][owner_node_key];var owner_tag=owner_node.tagName.toLowerCase();switch(owner_tag){case'link':styles.linked.push(owner_node.href);break;case'style':var css_rules=document_obj.styleSheets[i][css_rules_key];if(typeof(css_rules)!='undefined'){for(var j=0;j<css_rules.length;j++){if(css_rules[j].type==3&&css_rules[j].href!=''){styles.linked.push(css_rules[j].href);}else{break;}}}
if(isIE){styles.inline.push(document_obj.styleSheets[i].cssText);}else{styles.inline.push(owner_node.innerHTML);}
break;}}
return styles;}