﻿//login";
img1on = new Image();
img1on.src =  '/images/loginon.gif';
img1off = new Image();
img1off.src =  '/images/loginoff.gif';
//revise search
img2on = new Image();
img2on.src =  '/images/rsearchon.gif';
img2off = new Image();
img2off.src =  '/images/rsearchoff.gif';
//back to list
img3on = new Image();
img3on.src =  '/images/backtoliston.gif';
img3off = new Image();
img3off.src = '/images/backtolistoff.gif';
//submit
img4on = new Image();
img4on.src =  '/images/submiton.gif';
img4off = new Image();
img4off.src = '/images/submitoff.gif';
//cancel
img5on = new Image();
img5on.src =  '/images/cancelon.gif';
img5off = new Image();
img5off.src = '/images/canceloff.gif';
//add
img6on = new Image();
img6on.src =  '/images/addon.gif';
img6off = new Image();
img6off.src = '/images/addoff.gif';
//delete
img7on = new Image();
img7on.src =  '/images/deleteon.gif';
img7off = new Image();
img7off.src = '/images/deleteoff.gif';

function imgOn(imgName)
{
document[imgName].src = eval(imgName + 'on.src');
}

function imgOff(imgName)
{
document[imgName].src = eval(imgName + 'off.src');
}
    		function OpenWindow (URL, WinName, Features) { //v2.0
    		window.open(URL, WinName, Features);
    		}

