function showProductInfo () {

	msgText = "";
	msgText += "Golf shirts and sweatshirst are available in these sizes:\n\n";
	msgText += "- Small\n";
	msgText += "- Medium\n";
	msgText += "- Large\n";
	msgText += "- X-Large\n";
	msgText += "- XX-Large\n";
	msgText += "- XXX-Large\n\n";
	msgText += "To order, contact Joe Licata at airjoe42@aol.com.\n\n";
	alert(msgText);

}