<!--
//Author: Philip Jahmani Chauvet
//Dated: 11/12/2006 - 11/12/2006
//Expand a text or image

var thesize = 10;
function doExpandWidth( widg , size )
{
    thesize = document.getElementById( widg.id ).width;
    document.getElementById( widg.id ).width=thesize+size;
}
function unExpandWidth( widg  )
{
    document.getElementById( widg.id ).width=thesize;
}

function doExpandFontSize( widg , size )
{
    thesize = document.getElementById( widg.id ).style.fontSize;
    if ( thesize == 0 || thesize == "undefined" || thesize == "" )
        thesize = size + "px";
    else
        thesize = size + "px";
    document.getElementById( widg.id ).style.fontSize=(size+5)+ "px";
}
function unExpandFontSize( widg  )
{
    document.getElementById( widg.id ).style.fontSize=thesize;
}


//-->
