if(typeof ip=="undefined") var ip='';
if(typeof photoid=="undefined") var photoid=0;

function sendRequest() { 
  var url = "http://www.bubome.com/ajax/index.cfm?a=buboview&photoid="+ escape(photoid) + "&ip=" + escape(ip)+'&rand=' +  Math.floor(Math.random() * 1101); 
  http.open("GET", url); 
  http.onreadystatechange = function() {
	if (http.readyState == 4) { 
    results = http.responseText; 
    } 
  }
  http.send(null);  
} 

if(photoid > 0 && ip !='') {
  sendRequest();
}