
function posinavi(w,h) {
	var p = 'scrollbars=no,width=' + w + ',height=' + h + ',left=' + (screen.width-w)/2 + ',top=' + (screen.height-h)/2;
	return (p)
}

function Ouvrenavi() {		
	f=window.open('/service/','navi',posinavi(400,300));
}

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

if (document.layers)
	document.captureEvents(Event.KEYPRESS)

function keyNav(e)	{
	var strFromCode;
	if (document.layers)
		Code = e.which;
	else if (document.all)
		Code = event.keyCode;	

	if ((Code==83) || (Code==115)) {
		window.location.href='/service/';
	}		
}

document.onkeypress=keyNav;


