
<!--

// piece-specific information and display templates
// assumes that ISSUE.JS and XINE.CSS is already loaded

this_piece = 01;
piece_page_max = 09;

piece_department   = "Department";
piece_title        = "Title";
piece_subtitle     = "Subtitle of piece";

piece_linkback     = "http://backsideoflove.com/xine/issues/X000/01/"; // link to prev piece in a series

piece_author       = "Author";
piece_author_email = "email://author@iggy.net";


// individual copies in PIECE.JS so they can be customized if desired from this stock template
function display_piece_heading () {
	if (piece_department != "") 
		document.write ('<span class="piece_feature_title"><a href="00.htm">' + piece_department + '</a></span>:&nbsp;');
	if (piece_title != "") 
		document.write ('"<span class="piece_title">' + piece_title + '</span>"&nbsp;');
	if (piece_author != "") {
		if (piece_author_email != "")
			document.write ('<span class="piece_author">by&nbsp;<a href="' + piece_author_email + '" target="_blank">' + piece_author + '</a></span>');
		else
			document.write ('<span class="piece_author">by&nbsp;' + piece_author + '</span>');
	} // if author
	document.write ('&nbsp;&nbsp;<BR />');
	if (piece_subtitle != "")
		document.write ('<span class="piece_subtitle">' + piece_subtitle + '</span>&nbsp;&nbsp;');
	if (piece_linkback != "")
		document.write ('<span class="piece_linkback">[<a target="_blank" href="' + piece_linkback + '">continued from...</a>]</span>&nbsp;&nbsp;');
} // func


-->

