function emailToAFriend(emailAddress,emailBody) {

	document.location.href="mailto:"+emailAddress+"?body="+emailBody;

}

function ViewImage(itemdesc,itemid) { 
	var win;

	win = window.open("","imageviewer","width=660,height=530,menubar=no,toolbar=no,scrollbars=no");
	win.document.open();
	win.document.write("<html><head><title>"+itemdesc+"</title>");
	win.document.write("</head><body bgcolor=#ffffff leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0>");
	win.document.write("<table border=0 cellspacing=0 cellpadding=0 width=100%>");
	win.document.write("<tr><td valign=top align=center><font face=arial size=2>");
	win.document.write("<center><img height=480 src='art/"+itemid+".jpg' hspace=5></center><P>"+itemdesc+"");
	win.document.write("</font></td></tr></table><p align=center style='margin:0;font-size:10px;'><a href='javascript:void(window.close());'>[close window]</a></p></body></html>");
	win.document.close();
}
