// JavaScript Document

function mouseOver1()
{
document.as.src ="images/light-hover.jpg";
document.bs.src ="images/sqr-h.jpg";
}
function mouseOut1()
{
document.as.src ="images/light.jpg";
document.bs.src ="images/sqr.jpg";
}
function mouseOver11()
{
document.as.src ="images/light-hover.jpg";
document.ss.src ="images/sqr-h.jpg";
}
function mouseOut11()
{
document.as.src ="images/light.jpg";
document.ss.src ="images/sqr.jpg";
}
function mouseOver3()
{
document.as.src ="images/light-hover.jpg";
document.ds.src ="images/sqr-h.jpg";
}
function mouseOut3()
{
document.as.src ="images/light.jpg";
document.ds.src ="images/sqr.jpg";
}
function mouseOver5()
{
document.as.src ="images/light-hover.jpg";
document.mm.src ="images/sqr-h.jpg";
}
function mouseOut5()
{
document.as.src ="images/light.jpg";
document.mm.src ="images/sqr.jpg";
}
function mouseOver4()
{
document.as.src ="images/light-hover.jpg";
}
function mouseOut4()
{
document.as.src ="images/light.jpg";
}

function openwin(url, width, height, tit)
{
win1 = open("", "_blank", "toolbar=0,status=0,location=0,menubar=0,directories=0,scrollbars=0,resizeable=0,width="+width+",height="+height);
win1.document.open();
win1.document.write("<html><head><title>"+tit+"</title></head><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><a href=\"javascript:window.close()\"><img src="+url+" border=0 alt=\"close window\"></a></body></html>");
win1.document.close();
}