// Fonction open new window
var popup;
var features
function startPopup( url, name, width, height )
{
	features = 'width=' + width + ', height=' + height;
	popup = window.open( url, name, features );
	if( window.focus ) { popup.focus(); }
}
