// JavaScript Document
// JavaScript Document
var xmlHttp

//fotos
function showHint(str)
{

if (str.length==0)
{ 
document.getElementById("imagehint").innerHTML=""
return
}
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
} 
var url="/_inc/ajax_getimage.php"
url=url+"?q="+str
xmlHttp.onreadystatechange=stateChanged 
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
} 

function stateChanged() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("imagehint").innerHTML=xmlHttp.responseText 
} 
} 
//telos fotos


//upload fotos
function hideSelect(id_name)
{
document.getElementById(id_name).style.display="none"; 
}

function unhideSelect(id_name)
{
document.getElementById(id_name).style.display="block"; 
}

function GetXmlHttpObject()
{ 
var objXMLHttp=null
if (window.XMLHttpRequest)
{
objXMLHttp=new XMLHttpRequest()
}
else if (window.ActiveXObject)
{
objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
}
return objXMLHttp
} 
