function picture (picFileName,picWidth,picHeight,picAlt,picName) {
	var theImage = "";
	if (location.hostname == "old.susansexton.com") {
		// picture is being served from susansexton.com
		theImage = '<img src="pictures/' + picFileName + '" width="' + picWidth + '" height="' + picHeight + '" alt="' + ((picAlt=="")?picFileName:picAlt) + '" name="' + ((picName=="")?picFileName:picName) + '" lowsrc="Images/myLowRes_low.gif">';
		document.write( theImage );
	} else {
		// picture is being ripped off
		window.location = "http://old.susansexton.com/indexGallery.html";
	}
}

