// add page name to title
ti = document.title;
if (ti != "Gunter's Space Page") {document.title = ti+" - Gunter's Space Page"}

// protect mail address
function mailsend(mail,p1,p2,p3) {
	var ca;
	ca = "mailto:" + p2 + "\@" + p3 + "." + p1;
	mail.href = ca;
	return (1);
} 

// External links in new window
$(document).ready(function() {
    $("a").filter(function() {
    	return this.hostname && this.hostname !== location.hostname;
    }).attr('target', '_blank');
});

// Remove empty sat data rows
/*
$(document).ready(function () {
	$('tr').each(function () {
		$(this).find('td.rcont').each(function () {
			if ($(this).text().trim() == "") {
				$(this).closest("tr").remove();
			};
		});
	});
});
*/


