// set default new window args
$newwindowoptions = ",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes";

function pageload() {
	fixmailtos();
}

function open3dPreview($URL) {
	// open the pop up
	window.open($URL,"3dPreview","width=470,height=440" + $newwindowoptions);
	// cancel the html link
	return false;
}

function openLargeGalleryImage($id) {
	// open the pop up
	window.open("large.php?id=" + $id,"LargeGalleryImage","width=510,height=440" + $newwindowoptions);
	// cancel the html link
	return false;
}

function openExternalLink($URL) {
	// open a new window
	window.open($URL,"HMSEXIT");
	// cancel the html link
	return false;
}

function fixmailtos() {
        for (var i=0; i<document.links.length; i++) {
                if (document.links[i].href.substr(0,7) == "mailto:") {
                        document.links[i].href = document.links[i].href.replace(/(%20| )?AT(%20| )?/i, "@");
                        document.links[i].href = document.links[i].href.replace(/(%20| )?DOT(%20| )?/ig, ".");
                }
        }
}
