function showadd(id) {
id = id;
function myNewXMLobject() {
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}if (!xmlhttp){
            alert('There was a problem creating the XMLHttpRequest object');
        }
return xmlhttp;
    }
    // Make the XMLHttpRequest object
    var http = myNewXMLobject();
	document.getElementById('content'+id).innerHTML = '<br><br><br><font size=3 color=#FF8000><center><b>Loading ...</b></center></font>';
    // send data
    function sendRequest() {
		// Open PHP script for requests
		var url = 'http://mobsterstats.com/form.php?random'; 
		var myRandom = parseInt(Math.random()*999999); // cache buster 
		http.open('GET', url + '&rand=' + myRandom);
		http.onreadystatechange = handleResponse;
		http.send(null);
    }
	function handleResponse() {
        if(http.readyState == 4 && http.status == 200){
            // Text returned FROM PHP script
            var response = http.responseText;
            if(response) {
			document.getElementById('content'+id).innerHTML = response; 
			}
        }
	}
sendRequest('showadd('+id+');');
}









function showhome(id) {
id = id;
function myNewXMLobject() {
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}if (!xmlhttp){
            alert('There was a problem creating the XMLHttpRequest object');
        }
return xmlhttp;
    }
    // Make the XMLHttpRequest object
    var http = myNewXMLobject();
	document.getElementById('content'+id).innerHTML = '<br><br><br><font size=3 color=#FF8000><center><b>Loading ...</b></center></font>';
    // send data
    function sendRequest() {
		// Open PHP script for requests
		var url = 'http://mobsterstats.com/home.php?random'; 
		var myRandom = parseInt(Math.random()*999999); // cache buster 
		http.open('GET', url + '&rand=' + myRandom);
		http.onreadystatechange = handleResponse;
		http.send(null);
    }
	function handleResponse() {
        if(http.readyState == 4 && http.status == 200){
            // Text returned FROM PHP script
            var response = http.responseText;
            if(response) {
			document.getElementById('content'+id).innerHTML = response; 
			}
        }
	}
sendRequest('showhome('+id+');');
}









function browse(id,page) { 
id = id;
page = page;
function myNewXMLobject() {
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}if (!xmlhttp){
            alert('There was a problem creating the XMLHttpRequest object');
        }
return xmlhttp;
    }
    // Make the XMLHttpRequest object
    var http = myNewXMLobject();
	document.getElementById('content'+id).innerHTML = '<br><br><br><font size=3 color=#FF8000><center><b>Loading ...</b></center></font>';
    // send data
    function sendRequest() {
		// Open PHP script for requests
		var url = 'http://mobsterstats.com/browse.php?id='+id+'&page='+page;
		var myRandom = parseInt(Math.random()*999999); // cache buster 
		http.open('GET', url + '&rand=' + myRandom);
		http.onreadystatechange = handleResponse;
		http.send(null);
    }
	function handleResponse() {
        if(http.readyState == 4 && http.status == 200){
            // Text returned FROM PHP script
            var response = http.responseText;
            if(response) {
			document.getElementById('content'+id).innerHTML = response; 
			}
         }
}
sendRequest('browse('+id+', '+page+');');
}









function tricks(id) {
id = id;
function myNewXMLobject() {
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}if (!xmlhttp){
            alert('There was a problem creating the XMLHttpRequest object');
        }
return xmlhttp;
    }
    // Make the XMLHttpRequest object
    var http = myNewXMLobject();
	document.getElementById('content'+id).innerHTML = '<br><br><br><font size=3 color=#FF8000><center><b>Loading ...</b></center></font>';
    // send data
    function sendRequest() {
		// Open PHP script for requests
		var url = 'http://mobsterstats.com/tricks.php?random'; 
		var myRandom = parseInt(Math.random()*999999); // cache buster 
		http.open('GET', url + '&rand=' + myRandom);
		http.onreadystatechange = handleResponse;
		http.send(null);
    }
	function handleResponse() {
        if(http.readyState == 4 && http.status == 200){
            // Text returned FROM PHP script
            var response = http.responseText;
            if(response) {
			document.getElementById('content'+id).innerHTML = response; 
			}
        }
	}
sendRequest('tricks('+id+');');
}









function forum(id) {
id = id;
function myNewXMLobject() {
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}if (!xmlhttp){
            alert('There was a problem creating the XMLHttpRequest object');
        }
return xmlhttp;
    }
    // Make the XMLHttpRequest object
    var http = myNewXMLobject();
	document.getElementById('content'+id).innerHTML = '<br><br><br><font size=3 color=#FF8000><center><b>Loading ...</b></center></font>';
    // send data
    function sendRequest() {
		// Open PHP script for requests
		var url = 'http://mobsterstats.com/forum/index.php?random'; 
		var myRandom = parseInt(Math.random()*999999); // cache buster 
		http.open('GET', url + '&rand=' + myRandom);
		http.onreadystatechange = handleResponse;
		http.send(null);
    }
	function handleResponse() {
        if(http.readyState == 4 && http.status == 200){
            // Text returned FROM PHP script
            var response = http.responseText;
            if(response) {
			document.getElementById('content'+id).innerHTML = response; 
			}
        }
	}
sendRequest('forum('+id+');');
}









function screen(id) {
id = id;
function myNewXMLobject() {
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}if (!xmlhttp){
            alert('There was a problem creating the XMLHttpRequest object');
        }
return xmlhttp;
    }
    // Make the XMLHttpRequest object
    var http = myNewXMLobject();
	document.getElementById('content'+id).innerHTML = '<br><br><br><font size=3 color=#FF8000><center><b>Loading ...</b></center></font>';
    // send data
    function sendRequest() {
		// Open PHP script for requests
		var url = 'http://mobsterstats.com/screen.php?random'; 
		var myRandom = parseInt(Math.random()*999999); // cache buster 
		http.open('GET', url + '&rand=' + myRandom);
		http.onreadystatechange = handleResponse;
		http.send(null);
    }
	function handleResponse() {
        if(http.readyState == 4 && http.status == 200){
            // Text returned FROM PHP script
            var response = http.responseText;
            if(response) {
			document.getElementById('content'+id).innerHTML = response; 
			}
        }
	}
sendRequest('screen('+id+');');
}









function featured(id, week) {
id = id;
week = week;
function myNewXMLobject() {
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}if (!xmlhttp){
            alert('There was a problem creating the XMLHttpRequest object');
        }
return xmlhttp;
    }
    // Make the XMLHttpRequest object
    var http = myNewXMLobject();
	document.getElementById('content'+id).innerHTML = '<br><br><br><font size=3 color=#FF8000><center><b>Loading ...</b></center></font>';
    // send data
    function sendRequest() {
		// Open PHP script for requests
		var url = 'http://mobsterstats.com/featured.php?random'+week; 
		var myRandom = parseInt(Math.random()*999999); // cache buster 
		http.open('GET', url + '&rand=' + myRandom);
		http.onreadystatechange = handleResponse;
		http.send(null);
    }
	function handleResponse() {
        if(http.readyState == 4 && http.status == 200){
            // Text returned FROM PHP script
            var response = http.responseText;
            if(response) {
			document.getElementById('content'+id).innerHTML = response; 
			}
        }
	}
sendRequest('featured('+id+');');
}