function CharacterWindow( htmlFile )
{
	var wnd = "RMFCharacters";

    	var RMFWindow = window.open(htmlFile+".html", wnd, "width=520,height=335,resizable=no,toolbar=no,scrollbars=no,left=0,top=0");
    	if (RMFWindow.focus!=null) { RMFWindow.focus() }
}


function CharacterMenu( group )
{

document.write('<BR>');
document.write('<TABLE WIDTH="1%" BORDER="0"><TR>');
document.write('<TD ALIGN="right"><IMG SRC="../images/footer-left.gif" WIDTH="71" HEIGHT="16"></TD>');
document.write('<TD NOWRAP WIDTH="1%" ALIGN="center">. ');

if (group != 'royalty') { document.write('<A CLASS="footerLink" HREF="royalty.html" TARGET="main">Royalty</A> . '); }
if (group != 'knights') { document.write('<A CLASS="footerLink" HREF="knights.html" TARGET="main">Knights</A> . '); }
if (group != 'townsfolk') { document.write('<A CLASS="footerLink" HREF="townsfolk.html" TARGET="main">Townsfolk</A> . '); }

document.write('</TD>');
document.write('<TD ALIGN="left"><IMG SRC="../images/footer-right.gif" WIDTH="71" HEIGHT="16"></TD>');
document.write('<TR></TABLE>');
document.write('<BR>');

}


function CloseCharacterWindow()
{
document.write('<A HREF="javascript:window.close()"><IMG SRC="../../images/close.gif" BORDER="0" WIDTH="136" HEIGHT="24" ></A>');
}