// Standard Javascript functions for use with Isfahan pages

// --------------------  writeHelp() -----------------------
// writes text passed into the Help window.

function writeHelp(blurb){
	top.Panel.Help.document.close();
	top.Panel.Help.document.open();
	top.Panel.Help.document.write ('<HTML><HEAD></HEAD><BODY BGCOLOR="Navy" TEXT="Yellow" BACKGROUND="../misc/bg4.jpg">');
	top.Panel.Help.document.write ('<FONT FACE="Arial, Helvetica" COLOR="Yellow" SIZE="-1"><B>');
	top.Panel.Help.document.write (blurb);
	top.Panel.Help.document.write ('</B></FONT></BODY></HTML>');
	top.Panel.Help.document.close();
}


