// JavaScript Document
function NewWindow(url, winName, winWidth, winHeight, scrolling){
	
	LeftPosition = (screen.width) ? (screen.width-winWidth)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-winHeight)/2 : 0;
	
	settings = 'height='+winHeight+',width='+winWidth+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrolling+',resizable';
	
	var win = window.open(url, winName, settings);
}
// JavaScript Document