/* Bottom of page Copyright and date script */

function setCopyright(emailinfo, mcolor, scolor)
{
	var months = new Array(13);
	
	months[1] = "January";
	months[2] = "February";
	months[3] = "March";
	months[4] = "April";
	months[5] = "May";
	months[6] = "June";
	months[7] = "July";
	months[8] = "August";
	months[9] = "September";
	months[10] = "October";
	months[11] = "November";
	months[12] = "December";
	
	var time = new Date();
	var lmonth = months[time.getMonth() + 1];
	var date = time.getDate();
	var year = time.getYear();
	
	if (year < 2000)
	{
		year += 1900;
	}
	document.write("<big>");
	document.write("<font color='" + mcolor + "'>");
	document.write("Heritage Portrait Studios");
	document.write("<big>");
	document.write("&nbsp;  303 - 460 - 8705");
	document.write("</big><br>Email: ");
	document.write("<a href='mailto:info@heritageportraitstudios.com");
	document.write("?subject=Web Page Query - " + emailinfo + "'>");
//	document.write("?subject=Web Page Query - " + emailinfo + "&body=some test email text '>");
	document.write("<font color='" + scolor + "'>");
	document.write("info&#064;heritageportraitstudios.com</a>");
	document.write("</big><br><br>");

	document.write(" &nbsp &copy; " + year + " - Heritage Portrait Studios &nbsp; <br>");
	document.write("Date: " + lmonth + " ");
	document.write(date + ", " + year);
}

try
{
	if (img_cnt)
	{
		setCopyright('', '#e0e0e0', '#c0c0c0');
	}
}
catch(ex)
{}

