	var win = null;
	
	function noweokno(url, width, height )
	{
		LeftPosition = ( screen.width ) ? ( screen.width - width ) / 2 : 100;
		TopPosition = ( screen.height ) ? ( screen.height-height ) / 2 : 100;

		settings = 'width='+width+',height='+height+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';

		win = window.open(url, name, settings);

		if (win.focus)
		{
			win.focus();
		}
	};
