function FP_goToURL(url) {//v1.0
 window.location=url;
}

function showpic(image,width,height)
{

	var cond1, cond2;

	cond1 = "width=" + (width + 20) + "";
	cond2 = "height=" + (height + 60) + "";
	
	var s1 ="<TITLE>Image</TITLE>";
	var s15="";
	var s2 ="<p align='center'><a href='" + image + "'><IMG SRC='" + image + "' BORDER=0 WIDTH='" + width + "px' HEIGHT='" + height + "px'></a><BR>";
	var s3 ="<FORM><INPUT TYPE='BUTTON' VALUE='Close Window'" + " onClick='self.close()'>";
	var s4 ="</FORM></p>";
	
	ImageWindow=window.open("", "newwin" + width, "toolbar=no, scrollbars=" + scroll + ", menubar = no," + cond1 + "," + cond2);
	ImageWindow.document.write(s1 + s15 + s2 + s3 + s4);
	ImageWindow.document.close();
}

function printbio(person)
{
	var s;
	
	switch (person)	{
		case "timken": s = "pfTimken.htm"; break
		case "johnson": s = "pfJohnson.htm"; break
		case "hwang": s = "pfHwang.htm"; break
		case "kiyun": s = "pfKiyun.htm"; break
		case "gonzalez": s = "pfGonzalez.htm"; break
		case "petersen": s = "pfPetersen.htm"; break
	}
	//window.alert(s);
	window.open("documents/bios/" + s,"bios","location=1,status=1,scrollbars=1,menubar=yes,resizable=yes,width=500,height=300");
}