var xmlhttp_mk = false;
function CreateXMLHttpRequest2(){
  try {
    xmlhttp_mk = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
    try {
      xmlhttp_mk = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (e2) {
      xmlhttp_mk = false;
    }
  }
  if (!xmlhttp_mk && typeof XMLHttpRequest != "undefined") {
    xmlhttp_mk = new XMLHttpRequest();
  }
}
CreateXMLHttpRequest2();

function mightlike(psid){
	try{
		var url="/product/ajax/mightlike.asp?psid="+psid+"&t="+Math.random();
		xmlhttp_mk.open("GET",url,true);
		xmlhttp_mk.onreadystatechange = mightlike_ok;
		xmlhttp_mk.send(null);
	}
	catch(exception){}
}

function mightlike_ok(){
	var obj = document.getElementById("mightlike");
	if ((xmlhttp_mk.readyState == 4) && (xmlhttp_mk.status==200)){
		var response = xmlhttp_mk.responseText;
		try{obj.innerHTML=response;}
		catch(exception){}
	}
}
