// Utils.js

/*
<script language="javascript" type="text/javascript">Contact("Info", "Petesoft.com", "Contact Us");</script>

<script language="javascript" type="text/javascript">Contact("Info", "Petesoft.com", "Contact Us", "Send us an email");</script>
*/

function Contact(User, Domain, Label, Title)
{
	var Help = "";
	if (Title)
	{
		Help = " title=\"" + Title + "\"";
	}
	
	document.write("<a href=\"" + "mail" + "to:" + User + "@" + Domain + "\"" + Help + ">" + Label + "</a>");
}

