// JavaScript Document
function openLocationWindow(url, name, width, height) {
mywin = window.open(url, name, 'width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=1,status=1,menubar=0,scrollbars=1,resizable=1')
}

function Fenetre() {
var left = (screen.width - 620) / 2;
var top = (screen.height - 318) / 2;
winFlash = window.open("http://images.exfo.com/www/Products/FTB-400/Index.swf", "FTB400", "scrollbars=2,toolbar=0,menubar=0,width=620,height=318,resizable=0,status=0,scrolling=no");
   winFlash.focus();
 }
 
function openFixedWindow(url, name, width, height) {
mywin = window.open(url, name, 'width=' + width + ',height=' + height + ',left=25,top=25,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0')
}

function openFull(p,n) {
	var r 	= null;
	r = window.open(p,n,'width='+screen.width+',height='+screen.height+',top='+0+',left='+0+','+'scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=yes,dependent=no');
	if(r!=null && window.focus) r.window.focus();
}
