//<!--


function displayIPIX(BrochureID,ipix,servername,height,width)
{
 var ipixHTML = "<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0' height='"+height+"' width='"+width+"'>\n"
 + "<param name='src' value='"+servername+"/vtfiles/"+ipix+"'>\n"
 + "<param name='controller' value='false'>\n"
 + "<param name='AUTOPLAY' VALUE='true'>\n"
 + "<param name='target' value='myself'>\n"
 + "<param name='type' value='video/quicktime'>\n"
 + "<param name='bgcolor' value='black'>\n"
 + "<embed bgcolor='#707070' src='"+servername+"/vtfiles/"+ipix+"' pluginspage='http://www.apple.com/quicktime/download/' controller='false' autoplay='true' target='myself' type='video/quicktime' bgcolor='black' height='"+height+"' width='"+width+"'>\n"
 + "</object>";
 //alert(ipixHTML);
 document.getElementById('brch'+BrochureID).innerHTML = ipixHTML;
}



 function show(oElement)
 {
 var Content;
 var limit;
 Content = document.getElementById('vcontent');
 limit = Content.childNodes.length;
 for (var x=0;x<limit;x++)
 {
 var node = Content.childNodes[x];
 if (node)
 {
 if (node.nodeType == 1)
 {

 if (node.getAttribute("ID") == oElement)
 {
 node.style.display = "";
 }
 else
 {
 node.style.display = "none";
 }
 }
 }
 }
 }


//-->
