<!--

// Popup

function popup(mypage,w,h,resizable,scroll){
		var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		
		var settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resizable+',location=0,menubar=0,status=0,toolbar=0'
		var win = window.open(mypage,"ecoute",settings);
		
		if(win.window.focus){win.window.focus();}
	}

// End Popup

//-->