// 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=0';

	var win = window.open(url, '', settings);
	//myWin = window.open(url, '', 'scrollbars=0,titlebar=1,location=1,menubar=1,resizable=1,toolbar=1,status=1');
}
