﻿function mouseover()
{
    document.body.style.cursor='pointer'
    return true;
}

function mouseout()
{
    document.body.style.cursor='default';
    return true;
}

function clicked(page)
{
    window.open(page,'productpage', "width=840px,resizable=0,menubar=0, scrollbars=1");
    return true;
}