var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
	http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
	http = new XMLHttpRequest();
}

function showpicture(aid, pid) {
	pos = document.location.href.indexOf("&pid=");
	url = document.location.href.substr(0,pos+5);
	//document.location.href = url + pid;
	irandom = Math.random();
	irandom = 10000 * irandom;
	irandom = Math.round(irandom);
	
	http.abort();
	http.open("GET", "../../modules/gallery/user/ajax.php?aid=" + aid + "&pid=" + pid + "&random=" + irandom, true);
	http.onreadystatechange=function() {
		if(http.readyState == 4) {
			document.getElementById('picturediv').innerHTML = http.responseText;
		}
	}
	http.send(null);
}
