﻿
        //<![CDATA[ 

        function changeCell(el) { 
        cell=document.getElementsByTagName('td'); 
        for(c=0;c<cell.length;c++) { 
            if (cell[c].id == el.id)
            {
                cell[c].style.background="url('../Images/lightyellowbg_1x1.jpg')"; 
            }
        
        } 
        el.onmouseout=function() { 
        for(c=0;c<cell.length;c++) {
            if (cell[c].id == el.id)
            { 
                cell[c].style.background="url('../Images/yellowbg_1x1.jpg')"; 
            }
        } 
        } 
        } 

        function PageInIframe(ElementID, Url) {
            document.getElementById(ElementID).src=Url 
            }
        //]]> 


