function openPopUp(url,id,width,height,statusbar,toolbar,resizable,scrolls){
        var top  = (screen.height - height - 40) / 2;
        var left = (screen.width - width - 25) / 2;
        var settings  ='width='+width+',';
            settings +='height='+height+',';
            settings +='top='+top+',';
            settings +='left='+left+',';
            settings +='status='+statusbar+',';
            settings +='toolbar='+toolbar+',';
            settings +='resizable='+resizable+',';
            settings +='scrollbars='+scrolls;
		///
		window.open(url,id,settings);
}