self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight)

function movein(which)
{
    which.style.background='#FFFF00';
    which.style.cursor = 'hand';
}

function moveout(which)
{
    which.style.background='';
    which.style.cursor = 'hand';
}

