function writeFrames(goTab) {
//	alert(goTab);
	var path = "/std/";
	var str = location.search;
	var writeFrames = (str.indexOf("nowritefs")) && (top.window.length == 0); 
	if (writeFrames)
	{
	  if (str == "")
	  {
		var bodyFrame = window.location + "?nowritefs";
	  }
	  else
	  {
		var bodyFrame = window.location + "&nowritefs";
	  }
	  document.write(
'<FRAMESET ROWS="136,*,17" BORDER="0" FRAMESPACING="0" FRAMEBORDER="0">',
'	<FRAME SRC="nav.php?Downed=', goTab, '" NAME="navbar" SCROLLING="NO" NORESIZE MARGINHEIGHT="0" MARGINWIDTH="0">',
'	<FRAME SRC="', bodyFrame,'" name="stdcontent">',
'	<FRAME SRC="footer.htm" name="stdfooter">',
'</FRAMESET>'
	  );
	} 
}
