﻿function make_email(the_username,the_domain_hint){
	if (the_domain_hint == 'dotcom'){
		var the_domain = '@thissite.com';
	}
	document.write('<a href="mailto:' + the_username + the_domain + '">' + the_username + the_domain + '</a>');
}

	function showMainBox() {
		if (navigator.appName == 'Microsoft Internet Explorer') {
			document.write("<div class='mainIEBox'>");
		} else {
			document.write("<div class='mainBox'>");
		}
	}

	function showTop() {
		if (navigator.appName == 'Microsoft Internet Explorer') {
			document.write("<div class='topIeBorder'><img src='/images/trans.gif' width='786' height='11' /></div>");
		} else {
			document.write("<div class='topBorder'><img src='/images/trans.gif' width='786' height='11' /></div>");
		}
	}

	function showBottom() {
		if (navigator.appName == 'Microsoft Internet Explorer') {
			document.write("<div class=''><img src='/images/border/bottom.png' width='786' height='14' /></div>");
		} else {
			document.write("<div class=''><img src='/images/border/bottom.png' /></div>");
		}
	}
	
function confirm_action(the_message,the_result) {
    var agree=confirm(the_message);
    if (agree) {
        document.location = the_result ;
    }
}
