function newImage(ID,file) {
	document.getElementById(ID).src='/images/'+file;
}

function open_window(URL,name,left,top,width,height,menubar){
	 rp=window.open(URL,name,"top="+top+",left="+left+",height="+height+",width="+width+",menubar="+menubar+",scrollbars=1,resizable=1,status=1");
	 rp.focus();
	 return(false);
}


    function ChangeContent(sender, contentName)
    {                    
        
        var content = null;
        var selector = null;
        for (var i = 1; i < 6; i++)
        {
           
            var selectorName = 'hvc-' + i + '-s';
            var contentnameToSelect = 'hvc-' + i;
            selector = document.getElementById(selectorName);                    
            content = document.getElementById(contentnameToSelect);         
                                
            selector.className  =  (contentnameToSelect == contentName)  ? contentName + '_selected' : contentnameToSelect;
            
            content.style.display = (content.attributes.getNamedItem("id").nodeValue == contentName) ? 'block' : 'none';               
        }      
      
    }   
