
var newWindow;

function makeNewWindow(theURL,winName,features) { 
		newWindow = window.open(theURL,winName,'scrollbars=yes,resizable=yes,width=520,height=520,left=400,top=100');
		newWindow.focus();	
}
