// Copyright 2007-2008 NEW3S s.a. - NEW3S.com
// Christophe LEMOINE + Michael BRICOUT


function OnClick_Networking(obj,scene) {
	var num    = '';
	var object = obj;
	var nbDigit = NbDigit (obj);
	if (nbDigit>0) {
		var length = obj.length;
		num    = obj.substr (length-nbDigit, nbDigit);
		object = obj.substr (0, length-nbDigit);
	}
	window.status = "Mouse click: " + scene + "/" + object + " # " + num;
	var idStand = scene + "_A" + num;
	switch(object) {
		//Liens inter-scene
		case "fiche":
			window.open ("networker.asp?Id="+scene+"&IdNetworker="+num);
			SceneTracker("Fiche", scene, num);
		break;
		case "espace_3d":
			window.open ("networker.asp?Id="+scene+"&IdNetworker="+num+"&Lien3d=true");
			SceneTracker("Espace_3d", scene, num);
		break;
		default: ClickOnStand (obj, scene); break;
	}
}

function OnMouseEnter_Networking(obj, scene) {
	//alert ("OnMouseEnter_etage31_1("+obj+")");
}

function OnMouseExit_Networking(obj, scene) {
}

function OnZoneEnter_Networking(zone, physics, scene) {
	ZoneEnterOnStand (zone, physics, scene);
}

function OnZoneExit_Networking(zone, physics, scene) {
}

function OnKeyPress_Networking(keyCode, ascii, scene) {
}

function OnKeyRelease_Networking(keyCode, ascii, scene) {
}
// Copyright 2007-2008 NEW3S s.a. - NEW3S.com
// Christophe LEMOINE + Michael BRICOUT

