// ******************************** POPUP **************************************
function synchrone_popup(url,winname,width,height,scrollbars) {

var toolbar=0;
var location=0;
var directories=0;
var status=0;
var resizable=0;
var copy=0;
var menubar=0;
var ScreenWidth=window.screen.width;
var ScreenHeight=window.screen.height;
var movefromedge=0;
   
	placementx=(ScreenWidth/2)-((width)/2);
    placementy=(ScreenHeight/2)-((height)/2);

WinPop=window.open(url,"","width="+width+",height="+height+",toolbar="+toolbar+",location="+location+",directories="+directories+",status="+status+",scrollbars="+scrollbars+",menubar="+menubar+",resizable="+resizable+",left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+",");
		
}