/******************************************************************************/
/* www.lateggia.it                                                            */
/******************************************************************************/
/* Author:    www.herobyte.com                                                */
/* File name: global.js                                                       */
/* File Path: INCLUDE_PATH                                                    */
/* Created on : 25-ott-2009                                                   */
/* Copyright (c) 2009                                                         */
/******************************************************************************/
/* Definizione delle principali funzioni javascript di uso comune.            */
/******************************************************************************/

function changeDiv(id, img, color) {
    // document.getElementById(id+'b').value = id;
    document.getElementById(id).src = img;
    if(color)
        document.getElementById(id+'f').style.color= color;
}

function changeImage(id,img) {

    document.getElementById(id).src = img;
}

function setFocus(id){
    document.getElementById(id).focus();
}


