// JavaScript Document
function openNewWindow(xsURL,xiWidth,xiHeight) { 
	var thisWindow =  window.open(xsURL,"newWindow",'menubar=yes,scrollbars=auto,resizable=yes,screenX=50,screenY=50,left=50,top=50,width=' + xiWidth + ',height=' +  xiHeight);
	thisWindow.focus();
 
}