function openPhoto(i)
	{
	artPhoto = window.open("photo.asp?aid="+i, "artPhoto", "resizable=yes,status=no,scrollbars=yes, width=100, height=100");
	artPhoto.focus();
	}
	
function openQT(i)
	{
	artVideo = window.open("video.asp?vid="+i, "artVideo", "resizable=no, status=no, scrollbars=no, width=200, height=165");
	artVideo.focus();
	}

function writeHTML(a)
	{ document.write(a); }
	
function trim(sString) 
	{
	while (sString.substring(0,1) == ' ')
		{ sString = sString.substring(1, sString.length); }
	while (sString.substring(sString.length-1, sString.length) == ' ')
		{ sString = sString.substring(0,sString.length-1); }
	return sString;
	}
