//****************************************************************************************************
//
//  File 'main.js' written by Timothy Driscoll.
//
//  Most recent revision on August 31,1999.
//
//  For W. H. Freeman and Company, Stryer's Biochemistry Website Project.
//
//****************************************************************************************************




function chimeButton(scriptName,target)  {
	//alert(scriptName);
	switch (target)  {
		case "chimestr"		:	document.writeln("<a href=javascript:runMovie('" + scriptName + "')><img src='../fr_minibutton.gif' border='0'></a>");break;
		default				:	document.writeln("<a href=javascript:runMovie('" + scriptName + "')><img src='../fr_minibutton.gif' border='0'></a>");
	}
}


function runMovie(scriptName)  {
	var scriptToRun = "script " + scriptName;
	parent.f_str.document.chimestr.executeScript(scriptToRun);
}


function chimeToggle(scriptName,altscriptName,target)  {
	document.writeln("<embed type='application/x-spt' button='toggle' target='" + target + "' script='script " + scriptName + "' altscript='script " + altscriptName + "' width='12' height='12'>");
	document.writeln("<spacer type='horizontal' size='4'>");
}

function openHelp()  {

	var baseWidth;
	if (screen.width<720) baseWidth = 640;
		else if (screen.width<912) baseWidth = 800;
			else baseWidth = 1024;
			
	switch (baseWidth)  {
		case 640 : w_help = window.open('../chimehelp/index.html','help_win','width=560,height=420,screenX=20,screenY=1,scrollbars=1,menubar=0,toolbar=0,location=0,status=1,resizable=0');break;
		case 800 : w_help = window.open('../chimehelp/index.html','help_win','width=635,height=500,screenX=65,screenY=10,scrollbars=1,menubar=0,toolbar=0,location=0,status=1,resizable=0');break;
		case 1024 : w_help = window.open('../chimehelp/index.html','help_win','width=650,height=515,screenX=125,screenY=20,scrollbars=1,menubar=0,toolbar=0,location=0,status=1,resizable=0');break;
		default : 	w_help = window.open('../chimehelp/index.html','help_win','width=560,height=440,screenX=5,screenY=5,scrollbars=1,menubar=0,toolbar=0,location=0,status=1,resizable=0');
	}
}
