function launchWin(file, width, height) {
	features = "menubar=no,scrollbars=no,width=" + width + ",height=" + height
	BrandImageWin = window.open(file, "LM", features)
	BrandImageWin.focus ();
}

function linkOut(file, width, height) {
	features = "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height
	ExternalSite = window.open(file, "goodbye", features)
	ExternalSite.focus ();
}





//preloading buttons
		previouson = new Image();
		previouson.src = "/images/bios/b_previous1.gif";
		previousoff = new Image();
		previousoff.src = "/images/bios/b_previous0.gif";
		nexton = new Image();
		nexton.src = "/images/bios/b_next1.gif";
		nextoff = new Image();
		nextoff.src = "/images/bios/b_next0.gif";
		closeon = new Image();
		closeon.src = "/images/bios/b_close1.gif";
		closeoff = new Image();
		closeoff.src = "/images/bios/b_close0.gif";


function rollOn(button) {
	if (document.images) {
	document.images[button].src = eval(button + "on.src");
	}
}

function rollOff(button) {
	if (document.images) {
	document.images[button].src = eval(button + "off.src");
	}
}



