function inquirymessage() {

	mailURL = 'mailto:' + 'help@techharbor.net' + '?subject=Message to Tech Harbor from website. ' + ' ' + '&body=';
	
	instructions = 
	'<p><b>Send your inquiry to Tech Harbor. We would love to help!</b></p>' + '<hr>' +
	'<p>If you have a working email client set up on this computer, ' +
	'<a href="' + mailURL + '" style="color: #0066CC;">click here to send us a message</a>.</p>'  +
	'<p>Otherwise, please email us at ' + 'help@techharbor.net, or visit our contact page to generate a message from our website.' + '</p>' +
	'<p>' + ' ' + '</p>' + 'We will respond to your message in a prompt manner!' + '<p>' + ' ' + '</p>';
	
	win = window.open("","","height=200,width=480,dependent=yes,scrollbars=no,resizable=no");
	win.document.open();
	win.document.write('<html><head><title>Send your inquiry to Tech Harbor</title></head>' +
	'<body bgcolor="gray" style="font-family:verdana,arial,sans-serif; font-size:0.75em;line-height:1.5em;" TEXT="white">' +
	instructions + '<hr>' +'<p> </p>');
	win.document.close();
}
