function newWindowDisplayInfo(wname, toolbar, menubar, scrollbars, status, location, resizable, height, width, msg, url) {

	windowOptions = 'toolbar='+ toolbar +',menubar='+ menubar +',scrollbars='+ scrollbars +',status='+ status +',location='+ location +',resizable='+ resizable +',height='+ height +',width='+ width +',msg='+ msg;



	win=window.open('', wname, windowOptions);

	win.focus();

	with( win.document ) {

		open();

		write('<html>');

		write('<body topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>');

		write('<H1>' + msg + '</H1>');

		write('<font size=-1>&nbsp;&nbsp;&nbsp;Loading ...</font><p>');

		write('<p>' + url);

		write('</body></html>');

		close();

	}

	win.document.location.href=url;

}



function newWindow(wname, toolbar, menubar, scrollbars, status, location, resizable, height, width, msg, url) {

	windowOptions = 'toolbar='+ toolbar +',menubar='+ menubar +',scrollbars='+ scrollbars +',status='+ status +',location='+ location +',resizable='+ resizable +',height='+ height +',width='+ width +',msg='+ msg;



	win=window.open('', wname, windowOptions);

	win.focus();

	win.document.location.href=url;

}