var xmlHttp

function showaone(str)
{ 
var url="misc/AUA Disease State Theater/podcasts_showaone.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangeda)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function showatwo(str)
{ 
var url="misc/AUA Disease State Theater/podcasts_showatwo.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedb)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showathree(str)
{ 
var url="misc/AUA Disease State Theater/podcasts_showathree.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedc)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showafour(str)
{ 
var url="misc/AUA Disease State Theater/podcasts_showafour.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedd)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showafive(str)
{ 
var url="misc/AUA Disease State Theater/podcasts_showafive.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangede)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showasix(str)
{ 
var url="misc/AUA Disease State Theater/podcasts_showasix.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedf)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}






function showeone(str)
{ 
var url="misc/ENDO Disease State Theater/podcasts_showaone.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedae)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function showetwo(str)
{ 
var url="misc/ENDO Disease State Theater/podcasts_showatwo.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedbe)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showethree(str)
{ 
var url="misc/ENDO Disease State Theater/podcasts_showathree.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedce)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showefour(str)
{ 
var url="misc/ENDO Disease State Theater/podcasts_showafour.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedde)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showefive(str)
{ 
var url="misc/ENDO Disease State Theater/podcasts_showafive.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedee)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function showesix(str)
{ 
var url="misc/ENDO Disease State Theater/podcasts_showasix.htm?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChangedfe)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
}

function stateChangeda() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("AUAonecontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedb() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("AUAtwocontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedc() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("AUAthreecontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedd() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("AUAfourcontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangede() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("AUAfivecontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedf() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("AUAsixcontentplayer").innerHTML=xmlHttp.responseText 
} 
}



function stateChangedae() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("ENDOonecontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedbe() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("ENDOtwocontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedce() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("ENDOthreecontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedde() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("ENDOfourcontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedee() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("ENDOfivecontentplayer").innerHTML=xmlHttp.responseText 
} 
} 

function stateChangedfe() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{ 
document.getElementById("ENDOsixcontentplayer").innerHTML=xmlHttp.responseText 
} 
}


function GetXmlHttpObject(handler)
{ 
var objXmlHttp=null

if (navigator.userAgent.indexOf("Opera")>=0)
{
alert("This example doesn't work in Opera") 
return 
}
if (navigator.userAgent.indexOf("MSIE")>=0)
{ 
var strName="Msxml2.XMLHTTP"
if (navigator.appVersion.indexOf("MSIE 5.5")>=0)
{
strName="Microsoft.XMLHTTP"
} 
try
{ 
objXmlHttp=new ActiveXObject(strName)
objXmlHttp.onreadystatechange=handler 
return objXmlHttp
} 
catch(e)
{ 
alert("Error. Scripting for ActiveX might be disabled") 
return 
} 
} 
if (navigator.userAgent.indexOf("Mozilla")>=0)
{
objXmlHttp=new XMLHttpRequest()
objXmlHttp.onload=handler
objXmlHttp.onerror=handler 
return objXmlHttp
}
}