function openMot(idMot) {
	var Left = window.screen.width/2-200;
	var Top = window.screen.height/2-75;
	var mot = null;
	if (mot != null)
		mot.location.href = 'mot.cfm?idmot=' + idMot;
	else
		mot = window.open('mot.cfm?idmot=' + idMot, 'mot', "menubar=no, status=no, scrollbars=yes, toolbar=no, width=400, height=150, top=" + Top + ", left=" + Left);
}

