﻿// JScript File
var lastBackColor;
            function highlightrow(obj)
            {
            //alert('test');
            lastBackColor=obj.style.backgroundColor;
                obj.style.backgroundColor="#CCFFFF";
            }

            function unhighlightrow( obj )
            {
                obj.style.backgroundColor=lastBackColor;
            }            

function openLogDetails(logID)
{

window.open("logDetails.aspx?logID="+logID+"&refresh="+Date(),"_self")
}

function getnewimage(obj) 
{

obj.style.backgroundImage=

"url('gfx/mouseoverbutton.gif')"; 
}

function gotoURL(newURL)
{
window.open(newURL,"_self")
}

function openNewWindow(newURL)
{

window.open(newURL,"_blank")
}

function getoldimage(obj) 
{

obj.style.backgroundImage=

"url('gfx/button.jpg')"; 
} 


