// ==UserScript==
// @name            Hide Adverts on PinoyExchange
// @namespace       http://www.philippinestuffs.com
// @description     Hide adverts on PinoyExchange
// @include         http://www.pinoyexchange.com/forums/*
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('iframe { display: none; }');

