// JavaScript Document

<!--

function JSFG_writeRightColumnRightSubset() {

	htmlCode = 
'	<HR ALIGN="RIGHT" WIDTH="100%" SIZE="1" COLOR="6D4303">' +
		
'	<TABLE WIDTH="100%" BORDER="0" CELLPADDING="0">' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><A HREF="BETA calendar.htm">Calendar of JSFG Events</A></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><SPAN CLASS="style29"><A HREF="BETA JSFGExternalEventLinks.htm">Links to External Events</A></SPAN></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><A HREF="BETA JSFGOfficers&Chairs.htm">Contact Officers or Chairpersons</A></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP">&nbsp;</TD>' +
'			<TD VALIGN="TOP"><P>&nbsp;</P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><A HREF="BETA profiles.htm">JSFG Profile Listings</A></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><A HREF="BETA submit_your_profile.htm">JSFG Profile Submission</A></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><A HREF="BETA JSFGSubmitGrad.htm">JSFG Graduate Submission</A></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><A HREF="BETA listserv.htm">JSFG E-mail Mailing List</A></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'			<TD VALIGN="TOP"><P><A HREF="BETA JSFG 200 Questions For Interviews.htm"> 200 Questions job seekers might ask</A></P></TD>' +
'		</TR>' +
'		<TR>' +
'			<TD WIDTH="20" VALIGN="TOP">&nbsp;</TD>' +
'			<TD VALIGN="TOP"><P>&nbsp;</P></TD>' +
'		</TR>' +
'	</TABLE>'

	document.write(htmlCode)
	
	// The following set of code will generate a floating menu that will
	// users to go to the Top of Page and to the Previous Page.

	if (!document.layers)
	document.write('<div id="divStayTopLeft" style="position:absolute">')

	// Whatever menu you want to float will go here.
	htmlCode = 
'	<LAYER ID="divStayTopLeft">' +
'		<TABLE BORDER="0" CELLPADDING="0">' +
'			<TR>' +
'				<TD VALIGN="TOP" WIDTH="20"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'				<TD VALIGN="TOP"><P><A HREF="#TopOfPage">Top of Page</A></P></TD>' +
'			</TR>' +
'				<TR>' +
'				<TD VALIGN="TOP"><IMG SRC="images/Pointer.gif" WIDTH="13" HEIGHT="12"></TD>' +
'				<TD VALIGN="TOP"><P><A HREF="javascript:history.back()">Previous Page</A></P></TD>' +
'			</TR>' +
'		</TABLE>' +
'	</LAYER>'
	// End of floating menu content.

	document.write(htmlCode)
	
	//Enter "frombottom" or "fromtop"
	var verticalpos="frombottom"
	
	if (!document.layers)
	document.write('</div>')
	
	function JSFX_FloatTopDiv()
	{
		var startX = document.body.clientWidth - (document.body.clientWidth * .78 * .18) + 2;
		var startY = document.body.clientHeight * .10;
		var ns = (navigator.appName.indexOf("Netscape") != -1);
		var d = document;
		function ml(id)
		{
			var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
			if(d.layers)el.style=el;
			el.sP=function(x,y){this.style.left=x;this.style.top=y;};
			el.x = startX;
			if (verticalpos=="fromtop")
			el.y = startY;
			else{
			el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
			el.y -= startY;
			}
			return el;
		}
		window.stayTopLeft=function()
		{
			if (verticalpos=="fromtop"){
			var pY = ns ? pageYOffset : document.body.scrollTop;
			ftlObj.y += (pY + startY - ftlObj.y)/8;
			}
			else{
			var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
			ftlObj.y += (pY - startY - ftlObj.y)/8;
			}
			ftlObj.sP(ftlObj.x, ftlObj.y);
			setTimeout("stayTopLeft()", 10);
		}
		ftlObj = ml("divStayTopLeft");
		stayTopLeft();
	}
	JSFX_FloatTopDiv();
}
//-->