﻿// JScript File

function SendUrl(data){
	var to = "apdc@apdc.pt";
	document.location.href = "mailto:"+to+"?body=" + data;
}

function showdiv(id) {
    if (document.getElementById) { // DOM3 = IE5, NS6
        document.getElementById(id).style.display = 'inline';
    }
}

function hidediv(id) {
    if (document.getElementById) { // DOM3 = IE5, NS6
        document.getElementById(id).style.display = 'none';
    }
}
