function loadDesignersAutoTrans(designerName,ID)
{

	xmlHttp=GetXmlHttpObject()
 
    if (xmlHttp==null)
    {
        alert ("Browser does not support HTTP Request")
        return;
    } 
    var url="ajax/ajax_designerNames.asp?dn="+designerName+"&adoption=false&ID="+ID

    xmlHttp.onreadystatechange=stateChangedLoadDN
    xmlHttp.open("GET",url,true)
    xmlHttp.send(null)
    

} 
function loadDesignersAuto(designerName)
{

	xmlHttp=GetXmlHttpObject()
 
    if (xmlHttp==null)
    {
        alert ("Browser does not support HTTP Request")
        return;
    } 
    var url="ajax/ajax_designerNames.asp?dn="+designerName+"&adoption=false"

    xmlHttp.onreadystatechange=stateChangedLoadDN
    xmlHttp.open("GET",url,true)
    xmlHttp.send(null)
    

} 


function stateChangedLoadDN() 
{ 
    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ 
        
        var response=xmlHttp.responseText;
        
        responseArray = response.split("~")
   
        document.getElementById('selDesignerList'+responseArray[0]).innerHTML = responseArray[1];
        
   } 
} 


