
// ==================================================
// DIABAINO JAVASCRIPT LIB
// ==================================================
// Author: Augustus De Vree
// Date: 2008-01-18
//
//
// ==================================================

// --------------------------------------------------
// OPEN SECONDARY WINDOW
// --------------------------------------------------
function openWindow(mTarget, mWidth, mHeight) {
	var msgWin = window.open('', mTarget,'scrollbars=no,resizable=no,width='+mWidth+',height='+mHeight+',status=no,location=no,toolbar=no', marginwidth=0, marginheight=0);
	msgWin.focus();
}
// --------------------------------------------------
// CREATE TOC ITEM
// --------------------------------------------------
function createTocItem (imgName, imgDir) {
    tocItem [imgName] = new tocItem (imgName, imgDir)
}

// --------------------------------------------------
// TOC MOUSE OVER FUNCTION
// --------------------------------------------------
function tocMouseOver(imgName) {
    document[imgName].src =  tocItem[imgName].sel.src;
}

// --------------------------------------------------
// TOC MOUSE OUT FUNCTION
// --------------------------------------------------
function tocMouseOut(imgName) {
	document[imgName].src = tocItem[imgName].off.src;
}

// --------------------------------------------------
// CREATE TOC ITEMS
// --------------------------------------------------
createTocItem("cosa");
createTocItem("modello");
createTocItem("secondo");
createTocItem("leggi");
createTocItem("italia");
createTocItem("newsletter");
createTocItem("contattaci");
