
function write_mt(x,y,z){ document.write("<a href='mailto:", y, "@", x, "'>", z, "</a>"); }

function write_ml(x,y){ document.write("<a href='mailto:", y, "@", x, "'>", y, "@", x, "</a>"); }

function textClear(id) {if (id.value == id.defaultValue) id.value = "";}

function textRestore(id){ if (id.value == "") id.value = id.defaultValue;}

function toggle(id) {

if(document.getElementById(id).style.display=='block')
	{
	document.getElementById(id).style.display='none';
	}
else
	{
	document.getElementById(id).style.display='block';
	}
}

function closeAll(idFinish){

	for(i=0; i<idFinish; i++){
		document.getElementById('num_0'+i).style.display='none';
	}
}

function printThisPage(){if (window.print) { window.print(); } }
