/* function createAjaxRequest() { //alert("CreateAjaxRequest"); try{ // Opera 8.0+, Firefox, Safari return new XMLHttpRequest(); } catch (e){ // Internet Explorer Browsers try{ return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try{ return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e){ // Something went wrong alert("Your browser broke!"); return false; } } } } */ function getPageURL(modName, actionName) { return "https://saturna-tools.nl/api.php?APImod=" + modName + "&a=" + actionName; } function capitalizeFirstCharacter(value) { return value.charAt(0).toUpperCase() + value.slice(1); } function capitalizeAllCharacters(value) { return value.toUpperCase(); }