function showDrops(theID) {
	document.getElementById(theID).style.display = 'block';
}
function hideDrops(theID) {
	document.getElementById(theID).style.display = 'none';
}
function open_tour() {
	window.open('/cert/cert_tour.html','mywin','left=20,top=20,width=600,height=340,toolbar=0,scrollbars=yes,resizable=yes');	
}
function openLink(url) {
	window.open(url,'National CSIRTs');
	//window.opener.location.href = url;
}
