window.onload = initPage;

function initPage() {
if (document.getElementById("tipar")) document.getElementById('tipar').className = "ascuns";
if (document.getElementById("print")) document.getElementById('print').onclick= diploma;
if (document.getElementById("inchide")) document.getElementById('inchide').onclick= diploma;	
}

function diploma() {
if (document.getElementById("tipar")) document.getElementById('tipar').className = "ascuns";    
}

function tipareste(id) {
 document.getElementById('tipar').className = "centru";
 document.getElementById('idtipar').value = id;   
}

function ceelement(e) {
if (!e) var e = window.event;

if(typeof(e) !== 'undefined') {
if (e.target) targ = e.target;
else if (e.srcElement) targ = e.srcElement;
}

if(typeof(targ) !== 'undefined') {
if (targ.nodeType == 3) // defeat Safari bug
targ = targ.parentNode;

if (targ.id) return targ.id;	
}
else return 0;
}
