function popupDoc(newURL) {

    //declaration des variables du coin de la nouvelle fenetre
    var calcLeft = 100;
    var calcTop = 100;
	var calcWidth = 600;
	var calcHeight = 500;
//window.open(newURL,"FicheIam","resizable=yes,height=400,width=800,scrollbars=yes");
//	remoteWindow = window.open(newURL, "", 'status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,width=' + calcWidth + ',height=' + calcHeight + ',left=' + calcLeft + ',top=' + calcTop + ',resizable=no');
	remoteWindow = window.open(newURL, "", 'status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,width=' + calcWidth + ',height=' + calcHeight + ',resizable=yes');
 
  remoteWindow.focus();
}

function popupDoc2(newURL) {

    //declaration des variables du coin de la nouvelle fenetre
    var calcLeft = 100;
    var calcTop = 100;
	var calcWidth = 730;
	var calcHeight = 580;
//window.open(newURL,"FicheIam","resizable=yes,height=400,width=800,scrollbars=yes");
//	remoteWindow = window.open(newURL, "", 'status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,width=' + calcWidth + ',height=' + calcHeight + ',left=' + calcLeft + ',top=' + calcTop + ',resizable=no');
	remoteWindow = window.open(newURL, "Carte", 'status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,width=' + calcWidth + ',height=' + calcHeight + ',resizable=yes');
 
  remoteWindow.focus();
}
