
function fetish()
 {
   var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
	var string_length = 4;
	var randomstring = '';
	for (var i=0; i<string_length; i++) {
		var rnum = Math.floor(Math.random() * chars.length);
		randomstring += chars.substring(rnum,rnum+1);
	}
	 var ui = randomstring;

 xmlhttpfetish.open("POST","active_fetish.html?ui="+ui);
 xmlhttpfetish.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
 xmlhttpfetish.setRequestHeader("Connection", "close");
 xmlhttpfetish.send(parameters_newvids);
  xmlhttpfetish.onreadystatechange=function() {
  if (xmlhttpfetish.readyState==4) {
 if (xmlhttpfetish.responseText)
  { 
 document.getElementById("motiongallery").innerHTML=xmlhttpfetish.responseText;
  }
 } 	
}

}
fetish(); 
