m1_off = new Image();
m1_off.src = "/images/default/l1.jpg";
m1_ovr = new Image();
m1_ovr.src = "/images/default/l1_.jpg";

m2_off = new Image();
m2_off.src = "/images/default/l2.jpg";
m2_ovr = new Image();
m2_ovr.src = "/images/default/l2_.jpg";

m3_off = new Image();
m3_off.src = "/images/default/l3.jpg";
m3_ovr = new Image();
m3_ovr.src = "/images/default/l3_.jpg";
function ovr(img)
{
var imgovr = eval(img + "_ovr.src");
document.images[img].src = imgovr;
}

function off(img)
{
var imgoff = eval(img + "_off.src");
document.images[img].src = imgoff;
}

function MM_openBrWindow(theURL,winName,features) {
window.open(theURL,winName,features);}
var resId=0;
var imgWndw;
function imgOpen(imgLink,Title) {
if (typeof(window.resizeBy)=='undefined') return true;
imgWndw=window.open('',imgLink.target,'width=100,height=100'+',toolbar=no,menubar=no,location=no,status=no,'+'resizable=no,scrollbars=no,left='+(screen.width>>>2)+',top='+(screen.height>>>4));
self.focus();
var imgTitle=(Title)?Title:imgLink.href;
with (imgWndw.document){
open();
write('<ht'+'ml><he'+'ad><ti'+'tle>'+imgTitle+'</ti'+'tle>'+'</he'+'ad><bo'+'dy leftmargin="0" topmargin="0" '+'rightmargin="0" bottommargin="0" marginwidth="0" '+'style="margin:0;padding:0;position:fixed;overflow:none;" '+'marginheight="0"><img src="'+imgLink.href+'" border="0" '+' alt="'+imgTitle+'" title="'+imgTitle+'" class="r" /></bo'+'dy></ht'+'ml>');
close();
}
resId=setInterval('imgResize()',100);
return false
}
function imgResize() {
var w=imgWndw.document.images[0].width;
if (w>screen.availWidth) w=screen.availWidth;
var h=imgWndw.document.images[0].height;
if (h>screen.availHeight) h=screen.availHeight;
if (w>50 && h>50) {
var ww=(imgWndw.innerWidth)?imgWndw.innerWidth:((document.body)?
imgWndw.document.body.clientWidth:null);
var wh=(imgWndw.innerHeight)?imgWndw.innerHeight:((document.body)?
imgWndw.document.body.clientHeight:null);
if (ww && wh) {
imgWndw.resizeBy(w-ww,h-wh);
}
imgWndw.focus();
clearInterval(resId)
}
}