function checkContent()
{
    var height = dom('catContent').clientHeight;
    var width = dom('catContent').clientWidth;
    
    if(height <= 400)
        dom('catContainer').style.overflow = 'hidden';
    else
        dom('catContent').style.width = width - 17;
 }
 
 var printWin;
 function print(header, contentId)
 {
    if(printWin)
        printWin.close();
    
    printWin = window.open('print.aspx', 'PrinterFriendly', 'width=697, height=500, scrollbars=yes');
    printWin.focus();
    return false;
 }
 
 function dom(id)
 {
    return document.getElementById(id);
 }