// Popup window
function popupWindow( Name, width, height) {
	style = "height=" + height + ",width=" + width + ", top=" + ((screen.height/2)-(height/2)) + ", left=" + ((screen.width/2)-(width/2)) + ", status=yes, toolbar=no, menubar=no, location=no, scrollbars=yes, resizable=yes";
	openPrefix(Name, 'Popup', style);
}

/* URL Rewrites */
/* Gebruiken ipv de normale open functie */
function openPrefix(Name, Title, Style) {
    if (document.getElementsByTagName('base')[0] && Name.substring(0, 1) != "/") {
        var prefix = document.getElementsByTagName('base')[0].href;
    }
    else {
        var prefix = "";
    }
    window.open(prefix + Name, Title, Style);
}

function escapeHTML(str) {

    str = str.replace(/</g, "[");
    str = str.replace(/>/g, "]");

    return str;
}; 
