/* Script del sito www.dolmeningegneria.it. Autore: Alfio Privitera */

function openlink(eltd) {
if(eltd.firstChild) {
el=eltd.firstChild
// la seguente salta il testo (per quei browser che considerano testo anche i whitespace)
if(el.nodeType==3) el=el.nextSibling
location.href=el.href
}
}

function clickable(obj) {
try { obj.style.cursor='pointer' }
catch(err) { if(obj.style && typeof(obj.style.cursor)=='string') obj.style.cursor='hand'}
}
