/**
 * @author jean pierre carl VIGUER ( http://www.jpviguer.com )
 * 
 *         Creation : 2 avril 2009
 */

function onLoad() {
	insertEmail();
	insertLogo3dleds();
	var selection = location.search;

	if (selection == '?bw') {
		putInset("animation8x8x8bw");
	} else if (selection == '?color') {
		putInset("animation8x8x8color");
	} else {
		putInset("help");
	}
}

function putInset(insetNameId) {
	document.getElementById("help").style.display = "none";
	document.getElementById("animation8x8x8bw").style.display = "none";
	document.getElementById("animation8x8x8color").style.display = "none";

	document.getElementById(insetNameId).style.display = "block";
}
