function moveposition_ovi_services() {
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false 
//document.getElementById("sovi_services").style.left = (ns4)? my_event.pageX : event.x+document.body.scrollLeft  -430;
//document.getElementById("sovi_services").style.top = (ns4)? my_event.pageY : event.y+document.body.scrollTop-80 ;
document.getElementById("sovi_services").style.left = (ns4)? my_event.pageX : event.x+document.body.scrollLeft  +20  ;
document.getElementById("sovi_services").style.top = (ns4)? my_event.pageY : event.y+document.body.scrollTop -215  ;
document.getElementById("sovi_services").style.position = "absolute" ;
document.getElementById("sovi_services").style.visibility = "visible" ; 	
} 

var xmlHttp
function show_ovi_services(str)
{ 
moveposition_ovi_services();
xmlHttp=GetXmlHttpObject_ovi_services();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="../includes/get_ovi_services.asp";
url=url+"?b="+str;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged_ovi_services;
xmlHttp.open("GET",url,true);
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=tis-620"); 
xmlHttp.send(null);
}

function stateChanged_ovi_services() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("sovi_services").innerHTML = "";	
document.getElementById("sovi_services").innerHTML=xmlHttp.responseText;
} 
}

function GetXmlHttpObject_ovi_services()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
