function newWindowPopUp(url,w,h,resizable, scrollbars, name)
{ 	
	var LeftPosition = (screen.width - w) / 2;
	var TopPosition = (screen.height - h) / 2;
	var winprops = 'toolbar=no,status=no,resizable='+resizable+',scrollbars='+scrollbars+',width='+w+', height='+h+', left='+LeftPosition+',top='+TopPosition+',screenX=0,screenY=0,fullscreen=no';
	newWin2 = window.open(url,name,winprops); 
	window.newWin2.focus();
}