// ==================================================
// OPEN SECONDARY WINDOW
// ==================================================
function openWindow(mTarget, mWidth, mHeight) {
    msgWin = window.open('', mTarget, 'scrollbars=yes,resizable=yes,width=' + mWidth + ',height=' + mHeight + ',status=yes,location=no,toolbar=no', marginwidth = 0, marginheight = 0);
    msgWin.focus();
}
// ==================================================
// OPEN SECONDARY WINDOW : PAROLE
// ==================================================
function openWin(mTarget, mWidth, mHeight) {
    msgWin = window.open('', mTarget, 'scrollbars=no,resizable=no,width=' + mWidth + ',height=' + mHeight + ',status=yes,location=no,toolbar=yes', marginwidth = 0, marginheight = 0);
    msgWin.focus();
}
// ==================================================
// OPEN DIZIONARIO WINDOW
// ==================================================
function openDizionario(mTarget, mWidth, mHeight) {
    msgWin = window.open('', mTarget, 'scrollbars=yes,resizable=no,width=' + mWidth + ',height=' + mHeight + ',status=yes,location=no,toolbar=no', marginwidth = 0, marginheight = 0);
    msgWin.focus();
}
// ==================================================
// OPEN GENERIC WINDOW
// ==================================================
function openGeneric(mTarget, mWidth, mHeight) {
    msgWin = window.open('', mTarget, 'scrollbars=yes,resizable=yes,width=' + mWidth + ',height=' + mHeight + ',status=yes,location=yes,toolbar=yes');
    msgWin.focus();
}

// ==================================================
// MENU MOUSE OVER RELATED
// ==================================================
function tocItem(imgName) {
    this.name = imgName
    this.off = new Image();
    this.off.src = "/images/menu2009/" + imgName + "_off.gif";
    this.sel = new Image();
    this.sel.src = "/images/menu2009/" + imgName + "_sel.gif";
}

function createTocItem(imgName) {
    tocItem[imgName] = new tocItem(imgName)
}

function tocMouseOver(imgName) {
    document[imgName].src = tocItem[imgName].sel.src
}

function tocMouseOut(imgName) {
    document[imgName].src = tocItem[imgName].off.src
}

createTocItem("home");
createTocItem("scaffale");
createTocItem("strumenti");
createTocItem("interviste");
createTocItem("ebm");
createTocItem("pico");
createTocItem("dossier");
createTocItem("farmaci");
createTocItem("ilmiodiabete");
createTocItem("problemsolving");
createTocItem("ada");
createTocItem("studi-ricerche");
createTocItem("chisiamo");
createTocItem("cosaeamd");
createTocItem("link");
createTocItem("scrivici");

//createTocItem("diario");
//createTocItem("vetrina");
//createTocItem("bilancio");
//createTocItem("autoritratto");