function jMail(strWho) {
         strEmail = strWho + "@" + "bmrecycling.com";
         document.write ('<a href="mailto:' + strEmail + '">' + strEmail + '</a>');
}

/***************************************************************************************
Source code from original bmrecycling.js script file
***************************************************************************************/
var w = 700;
var h = 525;
var x = ((screen.width / 2) - (w / 2));
var y = ((screen.height / 2) - (h / 2));
var winProps = 'width='+w+',height='+h+',left='+x+',top='+y+',';
winProps += 'toolbar=no,location=no,directories=no,status=no,';
winProps += 'menubar=no,resizable=no,copyhistory=no,scrollbars=no';

function newImgWin(imgFile) {
	var theHTML = '<html>\n<head>\n';
	theHTML += '<title>B&M Metal Recycling</title>\n';
	theHTML += '</head>\n<body><div align="center">\n';
	theHTML += '<a onclick="window.close();return true">';
        theHTML += '<img src="'+imgFile+'" width=640 height=480></a>\n';
        theHTML += '<br>Click to close';
	theHTML += '</div></body>\n</html>';

	var imgWin = window.open(imgFile, 'imgWin', winProps);
	imgWin.focus();
	imgWin.document.write(theHTML);
	imgWin.document.close();
}
